
body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f3f6;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

footer a:hover {
    text-decoration: underline;
}

footer a:hover {
    text-decoration: underline;
}

#notificationDropdown .notification-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937
}

#notificationDropdown .notification-no {
    background-color: #2563eb;
    color: #fff !important;
    padding: 1px 8px;
    border-radius: 6px;
    font-size: .9rem
}

#notificationDropdown .read {
    font-size: .9rem;
    color: #4b5563;
    cursor: pointer
}

    #notificationDropdown .read:hover {
        color: #1d4ed8
    }

#notificationDropdown .notification-box {
    font-size: .85rem;
    border-radius: 8px;
    padding: .75rem;
    align-items: flex-start
}

    #notificationDropdown .notification-box h2 {
        font-size: .85rem;
        line-height: 1.4;
        margin: 0;
        font-weight: 400
    }

#notificationDropdown .profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: .75rem;
}

#notificationDropdown .notificationPopupClass {
    background-color: #f0f5ff
}

#notificationDropdown .name {
    font-weight: 600;
    color: #111827
}

#notificationDropdown .my-post, #notificationDropdown .chess-club {
    font-weight: 600;
    color: #374151;
}

#notificationDropdown .time {
    font-size: .75rem;
    color: #6b7280
}

#notificationDropdown .fa-circle {
    font-size: .5rem;
    vertical-align: middle;
    margin-left: .25rem
}

#notificationDropdown .private-message {
    border: 1px solid #e5e7eb;
    padding: .75rem;
    margin-top: .5rem;
    font-size: .8rem;
    border-radius: 4px
}

.footer-pro {
    background-color: #111827; /* A deep, modern charcoal/off-black */
    color: #9ca3af; /* A soft, readable light gray for text */
}

.footer-heading {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.875rem; /* 14px */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Space between links */
}

    .footer-links a {
        text-decoration: none;
        color: #9ca3af;
        transition: color 0.2s ease-in-out;
    }

        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

/* Sub-Footer Styling */
.sub-footer {
    background-color: #000000; /* Black for a distinct bottom bar */
    padding: 1.5rem 0;
    border-top: 1px solid #1f2937;
}

.social-icon {
    color: #9ca3af;
    font-size: 1.25rem; /* 20px */
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

    .social-icon:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }

/* Accordion button styling */
#popular-topics-toggle {
    color: #ffffff !important;
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

#form-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 9999;
    display: flex; /* Use !important to override any conflicting display properties */
    justify-content: center !important;
    align-items: center !important;
}

    #form-loader .loader-spinner {
        width: 60px;
        height: 60px;
        border: 8px solid #f3f3f3;
        border-top-color: #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


