/*Painel*/

/*Login*/
:root {
    --main-color: #052e31;
    --theme-primary-color: #fff;
    --theme-secondary-color: #fafafa;

    --theme-login-primary-color: #095b65;
    --theme-login-secondary-color: #052e31;
    --theme-login-three-color: #03989e;

    --color-menu: #b6b6b6;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-menu);
}

/* #login_form_area {
    background-image: linear-gradient(
        var(--theme-login-three-color),
        var(--theme-login-primary-color),
        var(--theme-login-secondary-color)
    ) !important;
} */

.login_clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 100px 0 100px;
}

.btn-lmn {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
}

.btn-lmn:hover {
    background-color: #052e31 !important;
}

.color-lmn {
    color: var(--main-color);
}

.text-login {
    --bs-text-opacity: 1;
    /* color: var(--theme-secondary-color) !important; */
}

.login__confirm {
    width: 200px;
}

.text-color-border {
    border-color: #052e31 !important;
}

/*Fim login*/

.ml-90 {
    margin-left: 90px;
}

.admin_sidebar--menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 55px;
    width: 100%;
    /* border: 1px solid #cfcfcf; */
    flex-direction: column;
}

.nav-item {
    font-weight: 500;
    color: #333;
}

.nav-item .nav-text {
    color: #333;
    font-size: 13px;
}

.admin_sidebar--menu-item:hover {
    color: #052e31;
}

.admin_sidebar--menu-item img {
    height: 16px;
}

.admin_sidebar--menu-item .apito {
    height: 28px;
    margin-top: -8px;
}

.admin_sidebar--menu-item .person-trophy {
    height: 25px;
    margin-top: -5px;
}

.admin_sidebar--menu-item .apito-text {
    margin-top: -5px;
}

.admin_header {
    min-height: 70px;
    background-color: var(--main-color) !important;
}

@media (max-width: 1690px) {
    .adjust_first {
        width: calc(100% - 98px);
    }
}

@media (max-width: 1810px) {
    .adjust_first {
        width: calc(100% - 100px);
    }
}

/*Messagem de validação*/
.bg-green {
    background-color: #2ec82e !important;
}

.bg-red {
    background-color: #cf1f1f !important;
}

.alert-position {
    position: fixed !important;
    bottom: 0;
    left: 20px;
}

/*Inicio*/

/*ADMIN users*/

.btn-lmn {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
}

.btn-lmn-orange {
    background-color: #f0950d !important;
    border-color: #f0950d !important;
}

.btn-lmn-orange:hover {
    background-color: #e77619 !important;
    border-color: #e77619 !important;
}

.margin__table {
    margin: 20px;
}

@media (max-width: 558px) {
    /* Para telas menores que 768px (tablets e celulares) */
    .user__table,
    .d-flex.justify-content-between.align-items-center.mb-1 {
        display: block !important; /* Ou outra propriedade desejada, como flex-direction: column */
    }
}

@media only screen and (max-width: 1180px) {
    .table-response {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}

@media only screen and (max-width: 1253px) {
    .table-response-table {
        display: block !important;
        width: 80% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}

@media only screen and (max-width: 1280px) {
    .table-response_arbitro,
    #table-campeonato {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}

@media only screen and (max-width: 1527px) {
    #table-campeonato {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}

.table-scale {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
}

#status_enable {
    color: green;
    font-weight: bolder;
}

#status_desabilite {
    color: red;
    font-weight: bolder;
}

#status_pending {
    color: orange;
    font-weight: bolder;
}

/*Fim ADM user*/

/* Carregamento entre menus */
#loading-spinner img {
    height: 100px;
}

.ellipsis {
    display: inline-block;
    position: relative;
    width: 80px !important;
    height: 80px !important;
}

.ellipsis div {
    position: absolute;
    top: 15px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #f9dd23;
    animation-timing-function: linear;
}

.ellipsis div:nth-child(1) {
    left: 8px;
    animation: ellipsis1 0.6s infinite;
}

@keyframes ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.ellipsis div:nth-child(4) {
    left: 56px;
    animation: ellipsis4 0.6s infinite;
}

@keyframes ellipsis4 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

.ellipsis div:nth-child(2) {
    left: 8px;
    animation: ellipsis2 0.6s infinite;
}

.ellipsis div:nth-child(3) {
    left: 32px;
    animation: ellipsis2 0.6s infinite;
}

@keyframes ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

#loading-spinner {
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2000;
}

.text-loading {
    margin-top: 40px;
}

/* Recuperação de senha */
#email-reset {
    width: 300px !important;
    border-color: #052e31;
}
/*Fim Recuperação de senha */

/*Campeonatos*/
.boards {
    display: flex;
    justify-content: space-between;

    margin-top: 32px;
}

.board {
    background: #fafafa;
    border: 1px solid #b6b6b6;
    box-shadow: 0 2px 2px -1px #333;
    border-radius: 4px;

    margin: 0 16px;
}

.board h3 {
    padding: 16px;
    margin: 0;
    color: #052e31 !important;
}

.sel-categoria {
    padding: 16px;
    min-width: 332px;
    min-height: 300px;
}

.card-categories {
    padding: 0;
    width: 300px;
    height: 350px;
    margin: 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
    pointer-events: none;
}

/* msg para quantidade de atleta */
.infoCount {
    color: #e77619;
    font-weight: bolder;
}

.infoLimit {
    color: #cf1f1f;
    font-weight: bolder;
}

/* Estilo para a lista de campeonatos */
.campeonato-lista {
    list-style-type: none; /* Remove os marcadores padrão da lista */
    padding-left: 0; /* Remove o recuo à esquerda */
    margin: 0; /* Remove as margens da lista */
}

.campeonato-lista li {
    white-space: normal; /* Permite que o texto quebre para a linha seguinte, se necessário */
    word-wrap: break-word; /* Quebra palavras longas para evitar que saiam da célula */
}
/*Categoria */

/* Estilo para a lista de categorias */
.categoria-lista {
    list-style-type: none; /* Remove os marcadores padrão da lista */
    padding-left: 0; /* Remove o recuo à esquerda */
    margin: 0; /* Remove as margens da lista */
}

.categoria-lista li {
    white-space: normal; /* Permite que o texto quebre para a linha seguinte, se necessário */
    word-wrap: break-word; /* Quebra palavras longas para evitar que saiam da célula */
}

/* table */
.title {
    color: var(--main-color);
}

.titleRound {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.fase-classification-scheduling {
    background-color: #052e31;
}

.fase-classification-scheduling td {
    color: white;
}

.wait__game {
    background-color: #f9dd23;
}

#area-table-athlete-up,
#area-table-athlete,
#area-table-times,
#area-table-score {
    width: 100%;
    display: none;
    flex-grow: 1;
    max-height: 350px;
    overflow-y: scroll;
}

.plus-table {
    border: none !important;
    background-color: white !important;
}

.color-championships {
    color: var(--theme-login-three-color);
    font-weight: bold;
}

.store-input {
    width: 100px;
    text-align: center;
}

@media (max-width: 992px) {
    .input-flex-column .col {
        flex: auto !important;
    }
}

.sumula {
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    color: #6c757d;
    line-height: 30px;
    max-width: 650px;
}
.openFases {
    border-radius: 5px;
    width: 120px;
    background-color: #ff8c00;
    color: #fff;
    /* background-color: #cccccc;
    color: #666666; */
    border: none;
    cursor: pointer;
}

.btn-disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: auto;
}

.phaseEight {
    background: #7f6b5f !important;
    color: #fff;
}

.phaseFour {
    background: #808080 !important;
    color: #fff;
}

.phaseSemiFinal {
    background: #4682b4 !important;
    color: #fff;
}

.phaseFinal {
    background: #ff7f00 !important;
    color: #fff;
}
/*Fim table*/

/* gerar pdf e excel */
.buttons-excel {
    background-color: rgb(22, 120, 65) !important;
    color: #ffffff !important;
    height: 40px;
    width: 120px;
    border-color: rgb(22, 120, 65) !important ;
    border-radius: 8px;
}

.buttons-pdf {
    background-color: rgb(181, 19, 8) !important;
    color: #ffffff !important;
    height: 40px;
    width: 120px;
    border-color: rgb(181, 19, 8) !important;
    border-radius: 8px;
}

#table-area {
    width: 100% !important;
}

.table-response {
    width: 100% !important;
}

/* Regulamento */
.cookies-card {
    width: 280px;
    height: fit-content;
    background-color: rgb(255, 250, 250);
    border-radius: 10px;
    border: 1px solid rgb(206, 206, 206);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    gap: 15px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.066);
}

.cookie-heading {
    color: rgb(34, 34, 34);
    font-weight: 800;
}
.cookie-para {
    font-size: 11px;
    font-weight: 400;
    color: rgb(51, 51, 51);
}
.button-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-button {
    width: 50%;
    padding: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.accept {
    background-color: rgb(34, 34, 34);
    color: white;
}
.reject {
    background-color: #ececec;
    color: rgb(34, 34, 34);
}
.accept:hover {
    background-color: rgb(0, 0, 0);
}
.reject:hover {
    background-color: #ddd;
}
.exit-button {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.exit-button:hover {
    background-color: #ddd;
    color: white;
}
.svgIconCross {
    height: 10px;
}

/* Regulamento */
main.cards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 10px;
}

main.cards section.card .close {
    margin-left: 229px;
    margin-top: -10px;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    padding: 0.4rem 0.4rem;
    text-transform: uppercase;
    border-radius: 32px;
    color: black;
}
main.cards section.card .close {
    width: 35px;
}

main.cards section.card {
    display: flex;
    flex-direction: column;
    width: 350px;
    align-items: center;
    text-align: center;
    background: white;
    /* padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-left: 30px !important;
    margin-top: 30px; */
    border: none;
}

main.cards section.card:first-child {
    margin-left: 0;
}

main.cards section.card .icon {
    width: 64px;
    height: 64px;
}

main.cards section.card img {
    width: 100%;
}

main.cards section.card h3 {
    font-size: 18px;
    margin: 16px 0;
    width: 300px;
}

main.cards section.card .footer-written {
    font-weight: 300;
    max-width: 240px;
    font-size: 12px;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
}

main.cards section.card .download {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border-radius: 32px;
    border: 0;
    cursor: pointer;
    font-size: 80%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px 0;
}

main.cards section.card .download i {
    padding: 2px 5px 9px 2px;
    font-size: 14px;
}

main.cards section.card.pdf .download {
    background: linear-gradient(to right, rgb(1, 17, 156), #806dec);
}

.footer-written {
    padding: 5px;
}

@media screen and (max-width: 720px) {
    main.cards {
        display: flex;
        width: auto;
        margin: 0 !important;
    }

    main.cards section.card {
        margin-left: 0;
        margin-bottom: 32px;
        width: auto;
    }

    main.cards section.card:last-child {
        margin-bottom: 0;
    }

    main.cards section.card .download {
        font-size: 70%;
    }
}

@media screen and (max-width: 392px) {
    main.cards section.card .close {
        margin-left: 0;
        margin-right: 280px;
    }

    main.cards section.card h3 {
        width: 280px;
    }
}

@media screen and (max-width: 377px) {
    main.cards section.card .close {
        margin-right: 200px;
    }
}

@media screen and (max-width: 335px) {
    main.cards section.card h3 {
        width: 200px;
    }
}

@media screen and (max-width: 298px) {
    main.cards section.card .close {
        margin-right: 160px;
    }
}

@media screen and (max-width: 261px) {
    main.cards section.card .close {
        margin-right: 0;
        margin-bottom: 5px;
    }

    main.cards section.card h3 {
        width: 100px;
    }
}

#documentoPDF {
    display: flex;
    width: 100%;
    height: 80vh;
}

/*Escala*/
table.dataTable {
    border-top: #dee2e6 !important;
    border-collapse: collapse !important;
}

/* .msg-escala {
    display: inline-block;
    min-width: 200px;
    text-align: right;
} */

.container {
    display: flex; /* Usa flexbox para organizar os elementos */
}

.container_input {
    display: flex; /* Usa flexbox para organizar os elementos */
}

/* Opcional: estilos para o input e o select */
/* .inputField,
.selectField {
    margin-right: 10px; 
} */

#table-escala {
    margin-right: 10px;
}

#pagination {
    margin-top: 10px;
}
.pagination-button {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #f8f9fa;
    color: #333;
    border-radius: 3px;
}
.pagination-button:hover {
    background-color: #e9ecef;
}
.pagination-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

th {
    background-color: #f2f2f2;
}
#headerButton {
    float: right;
    border: none;
    background-color: white;
}

div.price-box {
    display: flex;
    align-items: center;
    background-color: #cfcfcf;
    border-radius: 6px;
    width: 105px;
}
label .bi {
    font-size: 20px;
}
.price-box .bi {
    font-size: 20px;
    padding-left: 8px;
    padding-right: 8px;
}

@media only screen and (max-width: 1859px) {
    #myTable {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}

.checkbox:checked,
.markAllToSend:checked {
    background-color: #052e31 !important;
    border-color: #052e31 !important;
}

.colorIndisponivel {
    color: #cf1f1f !important;
    font-weight: 700;
}

.colorDisponivel {
    color: green !important;
    font-weight: 700;
}

.sendEmail {
    border-radius: 8px;
    border: none;
    width: 55px;
    height: 30px;
    background: black;
    font-size: 14px;
    color: white;
}

/*Fim Escala*/

/*Classification*/

.keys-classification {
    background: var(--main-color) !important;
}

.key-name {
    color: var(--theme-primary-color) !important;
}

/* Disponibilidade */
.time-availability {
    display: flex;
    justify-content: center;
}

/*Fullcalendar*/

@media (max-width: 768px) {
    /* Quando a tela for menor que 768px */
    .fc-header-toolbar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

#calendar {
    margin: 40px 10px;
    padding: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    height: 76vh;
    /* font-size: 14px; */
}

.fc-col-header-cell-cushion,
.fc-more-link,
.fc-daygrid-dot-event {
    color: var(--main-color);
}

.fc-dayGridMonth-button,
.fc-timeGridWeek-button,
.fc-timeGridDay-button,
.fc-next-button,
.fc-prev-button,
.fc-today-button {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.fc-daygrid-day-number {
    color: var(--main-color) !important;
}

.date-week {
    margin-right: 10px;
}
/*Fim Fullcalendar*/

/*Personal data*/
.form-check-inline input {
    border-color: #052e31;
}

.form-check-inline input:checked {
    background-color: #052e31;
}

.personal-data button {
    display: block;
    margin: 0 auto;
}
/*fim Personal data*/

.message-athlete {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #dd7804;
    color: #fff;
    padding: 10px 100px;
    right: -20px;
}

.hide-message {
    border-radius: 5%;
    padding: 2px;
    border: #3498db;
}

.status li {
    list-style-type: none;
}

/* ========================================
   Modal Backdrop & Animations Fixes
   ======================================== */

/* Reset completo do backdrop */
.modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1040 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    opacity: 0.5 !important;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

.modal-backdrop.fade {
    opacity: 0 !important;
    transition: opacity 0.15s linear !important;
}

.modal-backdrop.fade.show {
    opacity: 0.5 !important;
}

/* Modal sempre por cima do backdrop */
.modal {
    z-index: 1050 !important;
}

.modal.show {
    z-index: 1050 !important;
}

/* Específico para modais de pendências */
[id^="modalPendencias"] {
    z-index: 1055 !important;
}

/* ========================================
   Pendências Expandir/Colapsar Animations
   ======================================== */

/* Animações para expandir/colapsar pendências */
.pendencias-extras {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.pendencias-extras.show {
    animation: slideDown 0.3s ease-out;
}

.pendencias-extras.hide {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

/* ========================================
   Toggle Button Styles
   ======================================== */

/* Estilo para o botão de toggle */
.btn-toggle-pendencias {
    transition: all 0.2s ease;
}

.btn-toggle-pendencias:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.btn-toggle-pendencias i {
    transition: transform 0.3s ease;
}

.btn-toggle-pendencias.expanded i {
    transform: rotate(180deg);
}

/* ========================================
   Modern Notifications Styles
   ======================================== */

/* Estilização das Notificações Modernas */
.notification-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-icon {
    transition: all 0.3s ease;
}

.notification-btn:hover .notification-icon {
    transform: rotate(15deg) scale(1.1);
}

.notification-badge {
    top: -2px !important;
    right: -2px !important;
    background: linear-gradient(135deg, #ff4757, #ff3742) !important;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.notification-dropdown {
    background: linear-gradient(135deg, #0c4e4d, #1a5f5e) !important;
    border: none !important;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

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

.notification-header {
    background: linear-gradient(135deg, #0c4e4d, #1a6b6a);
    border-radius: 1rem 1rem 0 0;
}

.notification-icon-header {
    width: 40px;
    height: 40px;
    background: rgba(41, 217, 194, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(41, 217, 194, 0.4);
}

.notification-icon-header i {
    color: #29d9c2 !important;
}

.notification-body {
    background: white;
}

.notification-item {
    padding: 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s ease;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-content {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.notification-icon-item {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ffc107, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon-item.bg-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.notification-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.notification-text {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.75rem;
    color: #a0aec0;
}

.notification-status {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #29d9c2;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.notification-footer {
    background: #f8f9fa;
    border-radius: 0 0 1rem 1rem;
}

.notification-footer .btn-link {
    font-size: 0.8rem;
    text-decoration: none !important;
}

.notification-footer .btn-link:hover {
    color: #29d9c2 !important;
}

.notification-footer .btn-primary {
    background: linear-gradient(135deg, #29d9c2, #20c997);
    border: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.notification-footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(41, 217, 194, 0.3);
}

/* ========================================
   Notifications Responsive Design
   ======================================== */

/* Responsividade */
@media (max-width: 768px) {
    .notification-dropdown {
        min-width: 320px !important;
        max-width: 95vw !important;
        margin-left: -280px;
    }

    .notification-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .notification-icon-item {
        width: 32px;
        height: 32px;
    }

    .notification-title {
        font-size: 0.85rem;
    }

    .notification-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .notification-dropdown {
        margin-left: -260px;
        min-width: 280px !important;
    }

    .notification-header {
        padding: 0.75rem !important;
    }

    .notification-icon-header {
        width: 35px;
        height: 35px;
    }

    .notification-footer {
        padding: 0.75rem !important;
    }

    .notification-footer .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch !important;
    }

    .notification-footer .btn-primary {
        width: 100%;
    }
}

/* ========================================
   Custom Scrollbars
   ======================================== */

/* Scrollbar personalizada */
.notification-body::-webkit-scrollbar {
    width: 4px;
}

.notification-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-body::-webkit-scrollbar-thumb {
    background: #29d9c2;
    border-radius: 2px;
}

.notification-body::-webkit-scrollbar-thumb:hover {
    background: #20c997;
}
