/* CSS Restaurado e Limpo - NetAdm */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --primary-orange: #f26622;
    --transition: all 0.3s ease;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
}

/* Customizações MudBlazor */
.mud-menu-orange .mud-list-item:hover {
    background-color: rgba(232, 119, 34, 0.15) !important;
}

.mud-menu-orange .mud-list-item:hover .mud-list-item-text {
    color: #E87722 !important;
}

.mud-table-hover-orange tr:hover td {
    background-color: rgba(232, 119, 34, 0.1) !important;
    transition: background-color 0.2s ease;
}

/* Ajustes de Tema Escuro */
.mud-dark .mud-paper-dark-eval {
    background-color: #1e1e1e !important;
}

.mud-dark .mud-dialog {
    background-color: #2a2a2a !important;
}

/* Centralização do Login */
.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos de Tabela Customizados */
.mud-table-head-custom {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.header-cell-custom {
    color: #E87722 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.mud-table-foot-custom {
    background-color: rgba(255, 255, 255, 0.05) !important;
}
