.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(23, 22, 22, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}



.toast-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    /* Removidos os estilos fixos de cor */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    z-index: 9999;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
}


.toast-alert strong {
    font-weight: 600;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #065f46;
    cursor: pointer;
    line-height: 1;
}

.toast-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(16, 185, 129, 0.8);
    /* verde */
    width: 100%;
    transition: width 3s linear;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}



.table-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}



.table-wrapper {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
    display: block;
    box-sizing: border-box;
    padding: 16px;
}

.table {
    table-layout: auto;
    border-collapse: collapse;
}

.table th,
.table td {
    border: 1px solid #ccc;
    padding: 8px;
    white-space: nowrap;
    /* impede quebra de linha */
}

td {
    font-size: 12px !important;
}

th {
    font-size: 12px !important;
    background: aliceblue !important;
}

tr {
    font-size: 12px !important;
}




.fadeInDown {
    animation: fadeInDown 0.3s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeOutUp {
    animation: fadeOutUp 0.3s forwards;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

video {
    width: 100%;
    max-width: 800px;
    border: 2px solid #ccc;
    border-radius: 8px;
}


.AtividadesForm,
.EditarForm {
    font-size: 16px;
}




select[InputForm] {
    background: rgba(0, 0, 0, 0.0) !important;
    color: #000;
    padding-left: 40px !important;
    border-radius: 10px !important;
}

select[InputForm]:focus {
    background: rgba(0, 0, 0, 0.0) !important;
    color: #000 !important;
    padding-left: 40px !important;
    border-radius: 10px !important;
}

option[InputForm] {
    background: rgba(0, 0, 0, 0.0) !important;
    color: #000 !important;
    padding-left: 40px !important;
    border-radius: 10px !important;
}

option[InputForm]:focus {
    background: rgba(0, 0, 0, 0.0) !important;
    color: #000 !important;
    padding-left: 40px !important;
    border-radius: 10px !important;
}


.Icons {
    position: absolute;
    margin-top: 5px;
    margin-left: 8px;
    font-size: 18px;
    color: #000;
}

input[InputForm] {
    background: rgba(0, 0, 0, 0.0);
    color: #000;
    padding-left: 40px;
    border-radius: 6px;
}

.NovoRegistro {
    background: rgba(255, 255, 255, 0);
    font-size: 18px;
    cursor: pointer !important;
    padding: 6px;
}

.TitlePadrao {
    background: rgba(255, 255, 255, 0);
    font-size: 18px;
    padding-left: 8px;
    cursor: pointer !important;
    padding: 6px;
}

.NovoRegistro:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.TitlePadrao:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.Clickponteiro {
    padding-left: 8px;
}

.PosicaoNavg {
    text-align: right;
    margin-bottom: 10px !important;
}

.bntNovoRgs {
    margin-bottom: 10px !important;
}

.SelectPgs {
    margin-bottom: 10px !important;
}

.iconsBs {
    margin-bottom: 10px !important;
}