/* RioDesk Custom Styles */
html, body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.cursor-pointer {
    cursor: pointer;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h-100 {
    height: 100%;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #BDC3C7;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7F8C8D;
}

/* MudBlazor overrides */
.mud-table-row:hover {
    background-color: #EBF5FB !important;
}

#blazor-error-ui {
    display: none;
}
