.fv-login-body {
    background: linear-gradient(160deg, #f4f6fb 0%, #e9edf5 100%);
}

.fv-app-body {
    background: #f4f6fb;
}

.fv-layout {
    display: flex;
    padding-top: 56px;
    min-height: 100vh;
}

.fv-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    height: calc(100vh - 56px);
    position: sticky;
    top: 56px;
    overflow-y: auto;
}

.fv-content {
    flex: 1;
    padding: 1.5rem;
    min-width: 0;
}

.fv-menu .nav-link {
    color: #333;
    border-radius: 0;
    padding: .65rem 1rem;
}

.fv-menu .nav-link.active {
    background: #eaf1fd;
    color: #0d6efd;
    font-weight: 600;
    border-left: 3px solid #0d6efd;
}

.fv-menu .nav-link i {
    width: 1.25rem;
    display: inline-block;
    text-align: center;
    margin-right: .4rem;
}

.fv-menu-group {
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .05em;
    color: #9aa1ab;
    padding: 1rem 1rem .25rem;
}

.fv-table-wrap {
    background: #fff;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
}

.fv-table-wrap table {
    margin-bottom: 0;
}

.fv-table-actions {
    white-space: nowrap;
    width: 1%;
}

.fv-readonly-field {
    background: #f8f9fa;
}

/*
 * #fvModal envolve .modal-body/.modal-footer num <form> (pra poder usar
 * onsubmit). O CSS de .modal-dialog-scrollable do Bootstrap espera esses
 * dois como filhos diretos de .modal-content - com o <form> no meio, o
 * calculo de altura/scroll quebra: campos cortados e o rodape (botao
 * Salvar) empurrado pra fora da area visivel. display:contents tira o
 * <form> do fluxo de layout (sem tirar do DOM/funcionalidade), entao
 * .modal-body e .modal-footer voltam a se comportar como filhos diretos.
 */
#fvModal form {
    display: contents;
}
