/* Utility css classes */
.one-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.max-h-full {
    max-height: 100%;
}

.max-w-full {
    max-width: 100%;
}

.font-bold {
    font-weight: 600;
}

.font-bold--important {
    font-weight: 600 !important;
}

.font-semibold {
    font-weight: 500;
}

.font-semibold--important {
    font-weight: 500 !important;
}

.underline-on-hover:hover {
    text-decoration: underline;
}

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.75rem;
}

.fs-9 {
    font-size: 0.625rem;
}

.user-select-none {
    user-select: none !important;
}

/* Use with DxMenuItem to create a divider */
.menu-divider {
    height: 1px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    cursor: default;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.border-none {
    border: none !important;
}

.border-x-none {
    border-inline: none !important;
}

.border-y-none {
    border-block: none !important;
}

.border-t-none {
    border-top: none !important;
}

.border-b-none {
    border-bottom: none !important;
}

.one-line-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-nowrap {
    white-space: nowrap;
}
