/* Sidenav active link — uses design token instead of raw hex */
.side-nav-link.active {
    color: var(--bs-primary) !important;
}

/* Stacked modal: clone-date-modal opens on top of event-modal.
   Raise its z-index above the first modal (1055) so it floats correctly. */
#clone-date-modal {
    z-index: 1065;
}

/* ===== Mobile: Prev/Next button touch targets (Spec 54 §3) ===== */
@media (max-width: 767.98px) {

    .fc-prev-button,
    .fc-next-button {
        padding: 10px 18px !important;
        font-size: 0.95rem !important;
        min-height: 44px;
    }

    .fc-prev-button .fc-icon,
    .fc-next-button .fc-icon {
        display: none;
    }

    .fc-prev-button::after {
        content: 'Anterior';
    }

    .fc-next-button::after {
        content: 'Próximo';
    }
}

/* ===== Safari: Artist selector alignment (Spec 54 §4) ===== */
.topbar-artists-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
}

.topbar-artists-container>* {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
}
/* ===== CRM Kanban: WhatsApp column badge (Spec 32 §2b) ===== */
.kanban-column.whatsapp-column > .card {
    border-top: 3px solid #25D366;
}

.kanban-column.whatsapp-column > .card > .card-body::before {
    content: "WhatsApp";
    display: inline-block;
    font-size: 10px;
    color: #25D366;
    margin-bottom: 4px;
}
