html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .modal-fullscreen {
        width: 90%;
        max-width: 90%;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .btn {
        font-size: 0.9rem; 
        padding: 0.4rem 0.8rem;
    }
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040; /* Backdrop padrão */
}

.modal-backdrop-secondary {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1060; /* Acima do backdrop padrão */
}

.modal.fade.show {
    z-index: 1050; /* Modal padrão visível */
}

.modal-confirmacao {
    z-index: 1070 !important; /* Modal de confirmação */
}

.itens-modal-body {
    flex: 1 1 auto; 
    overflow-y: auto; 
    overflow-x: auto; 
    max-height: 80vh;
}

.modal-itens {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Altura da viewport */
}

.modal-footer {
    flex: 0 0 auto;
    border-top: none !important
}
.modal-header {
    flex: 0 0 auto;
    border-bottom: none !important
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none;
}

html {
    position: relative;
    min-height: 100%;
}

/*body {
    margin-bottom: 60px;
}
*/
.fs60px {
    font-size: 60px;
}

.text-bold {
    font-weight: bold;
}

.text-darkGrey {
    color: darkslategray;
}

.selected {
    background-color: #8a8888;
    cursor: pointer;
    font-weight: bold
}

tbody tr:hover {
    cursor: pointer;
}

td button {
    margin: 0;
    padding: 0;
}

.btn-black {
    background-color: black;
    color: white;
}

.btn-light-grey {
    background-color: #D3D3D3; 
    color: #000000;
}

.btn-dark-grey {
    background-color: #808080;
    color: #ffffff;
}


.btn.btn-outline-secondary {
    color: #6c757d;
}

    .btn.btn-outline-secondary.btn-secondary {
        color: #fff;
    }

    .btn.btn-outline-secondary:hover {
        color: #fff;
    }

.badge-warning {
    background-color: #ffc107; /* Amarelo */
}

.badge-orange {
    background-color: #fd7e14; /* Laranja */
}

.badge-danger {
    background-color: #dc3545; /* Vermelho */
}
.badge-success {
    background-color: #28a745; /* Verde */
}

.validation-summary-errors ul li {
    color: #dc3545;
}


.material-symbols-rounded {
    color: #6c757d;
}

select:disabled {
    background-color: #e9ecef; /* Cinza claro */
    color: #6c757d; /* Cinza escuro */
    cursor: not-allowed; /* Cursor de bloqueado */
    opacity: 0.6;
}

a[data-bs-toggle="popover"] {
    cursor: pointer !important;
}


