/* ========== MODO NOTURNO - PÁGINA DE RÁDIO ========== */

/* Títulos e textos do header */
body.dark-mode .container h2 {
    color: #f1f5f9 !important;
}

body.dark-mode .container h2 i {
    color: #a78bfa !important;
}

body.dark-mode .container > .mb-5 p {
    color: #94a3b8 !important;
}

/* Cards de rádio */
body.dark-mode .col-12 > div[style*="background: white"] {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    border-left: 4px solid #8b5cf6 !important;
}

body.dark-mode .col-12 > div[style*="background: white"]:hover {
    background: #273549 !important;
}

/* Título do programa */
body.dark-mode .col-12 h5 {
    color: #f1f5f9 !important;
}

/* Data */
body.dark-mode .col-12 p[style*="color: #6b7280"] {
    color: #94a3b8 !important;
}

/* Player de áudio */
body.dark-mode audio {
    filter: invert(1) hue-rotate(180deg);
    opacity: 0.9;
}

/* Info box de paginação */
body.dark-mode div[style*="background: white"][style*="border-radius: 12px"] {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
}

body.dark-mode div[style*="background: white"][style*="border-radius: 12px"] span {
    color: #94a3b8 !important;
}

body.dark-mode div[style*="background: white"][style*="border-radius: 12px"] strong {
    color: #f1f5f9 !important;
}

/* Paginação */
body.dark-mode .pagination .page-item .page-link {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}

body.dark-mode .pagination .page-item .page-link:hover {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
}

body.dark-mode .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
    border-color: #7c3aed !important;
    color: white !important;
}

body.dark-mode .pagination .page-item.disabled .page-link {
    background: #0f172a !important;
    border-color: #1e293b !important;
    color: #475569 !important;
}

/* Nenhuma programação disponível */
body.dark-mode .text-center h3 {
    color: #94a3b8 !important;
}

body.dark-mode .text-center p[style*="color: #9ca3af"] {
    color: #64748b !important;
}

body.dark-mode .text-center div[style*="color: #d1d5db"] {
    color: #475569 !important;
}

/* Pagination Styles */
.pagination {
    gap: 8px;
}
.pagination .page-item .page-link {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.2s ease;
    min-width: 44px;
    text-align: center;
}
.pagination .page-item .page-link:hover {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
    border-color: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.pagination .page-item.disabled .page-link {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
}