@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

body {
    font-family: 'Rethink Sans', sans-serif !important;
}

/* Default (Light Mode) Scrollbar Styling */
.custom-scrollbar::-webkit-scrollbar,
.right-side-scroll::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track,
.right-side-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    /* Light background */
    border-radius: 4px;
    margin: 4px 0;
}

.custom-scrollbar::-webkit-scrollbar-thumb,
.right-side-scroll::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    /* Light gray thumb */
    border-radius: 4px;
    transition: background 0.2s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover,
.right-side-scroll::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
    /* Slightly darker on hover */
}

/* Firefox scrollbar - Light Mode */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f0f0f0;
}

/* Dark Mode Scrollbar Styling */
.dark .custom-scrollbar::-webkit-scrollbar-track,
.dark .right-side-scroll::-webkit-scrollbar-track {
    background: #1a1a1b;
    /* Dark background */
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb,
.dark .right-side-scroll::-webkit-scrollbar-thumb {
    background: #3b3b53;
    /* Dark thumb */
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover,
.dark .right-side-scroll::-webkit-scrollbar-thumb:hover {
    background: #6a6a6b;
    /* Darker hover */
}

/* Firefox scrollbar - Dark Mode */
.dark .custom-scrollbar {
    scrollbar-color: #505050 #1e1e1e;
}


/* For Firefox */
/* .custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ffffff #1a1a1b;
} */

/* Sidebar Styling */
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
    width: 250px;
    z-index: 10;
}

.sidebar-content {
    overflow-y: auto;
    height: calc(100vh - 3.5rem);
}

.content {
    max-height: 100vh;
}

.mx-w-center-inside {
    max-width: 700px !important;
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 450px) {
    .mx-w-center-inside {
        margin-bottom: 150px;
    }
}

.mx-w-center {
    max-width: 1152px !important;
}

.common-radius {
    border-radius: 8px;
}

.header-search {
    width: 32rem;
}

.testingClass {
    background-color: red;
}

@media (prefers-color-scheme: dark) {
    .testingClass:hover {
        background-color: red;
    }
}

@media screen and (max-width: 1024px) {
    .side-bar-home {
        display: none !important;
    }
}

.remove-focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbarButton_class{
    width: 36px !important;
    height: 36px !important;
}

.w-95{
    width: 95%;
}

.thread-title {
    font-size: 1.75rem; 
}

@media (min-width: 1024px) {
    .thread-title {
        font-size: 2.25rem;
    }
}