/* /es/cookies/css/style.css */

#cookies-content {
    scroll-behavior: smooth;
}

/* Sidebar nav */
.cookies-link {
    display: block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    color: #64748b; /* slate-500 */
    text-decoration: none;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    margin-bottom: 0.15rem;
    font-size: 0.8rem;
}

.cookies-link:hover {
    color: #0f172a;             /* slate-900 */
    background-color: #e5e7eb;  /* slate-200 */
}

.cookies-link.active {
    background: #6366f1;        /* indigo-500 */
    color: #ffffff;
    border-color: #4f46e5;      /* indigo-600 */
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
}

/* Scrollbar dentro del contenido */
#cookies-content::-webkit-scrollbar {
    width: 6px;
}

#cookies-content::-webkit-scrollbar-track {
    background: #f1f5f9; /* slate-100 */
}

#cookies-content::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* slate-300 */
    border-radius: 999px;
}

#cookies-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* slate-400 */
}

/* Tipografía */
#cookies-content h2 {
    letter-spacing: 0.06em;
}

#cookies-content p,
#cookies-content li {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    #cookies-content {
        height: 620px;
    }
}

@media (max-width: 768px) {
    #cookies-content {
        height: 520px;
    }

    .cookies-link {
        font-size: 0.78rem;
    }
}

@media (max-width: 640px) {
    #cookies-content {
        height: auto;
        max-height: 75vh;
    }
}
