﻿
.btn-trash {
    font-size: 24px;
    color: #6C757D; /* Bootstrap text-secondary */
    width: 100%; /* Make the button occupy the full width of the cell */
    height: 100%; /* Make the button occupy the full height of the cell */
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btn-trash:hover {
        font-size: 24px;
        color: darkred; /* Bootstrap text-dark */
    }

.text-dado {
    font-size: 14px;
}

@media (min-width: 768px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

.disabled-option {
    color: #adb5bd; /* Cor cinza clara para o texto */
    cursor: not-allowed; /* Cursor de proibido */
}

.alert-custom {
    background-color: #f8f9fa; /* Fundo claro semelhante ao light subtle */
    border-color: #e9ecef; /* Cor da borda para combinar com o fundo */
    color: #495057; /* Cor do texto para um bom contraste */
}

.alert-custom .form-check-label {
    color: #495057; /* Cor do texto dentro do alert */
}