/* Base Settings */
body {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Privacy Blur Effect */
.privacy-blur {
    color: transparent;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    user-select: none;
    background-color: #f1f5f9;
    border-radius: 4px;
}

/* Animations */
.form-transition {
    transition: all 0.3s ease-in-out;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary~* {
    animation: slideDown 0.3s ease-in-out;
}

details[open] summary i.fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

details summary i.fa-chevron-down {
    transition: transform 0.3s;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide scrollbar for neatness */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Sticky Sidebar logic */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}