:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #e0e0e0;
    --text-light: #a0a0a0;
    --bg-dark: #121212;
    --card-dark: #1e1e1e;
    --border-dark: #333;
    scrollbar-width: thin;
}

@-webkit-keyframes delay {
    0%, 40%, 100% {
        transform: scaleY(0.05);
        -webkit-transform: scaleY(0.05);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}
@keyframes delay {
    0%, 40%, 100% {
        transform: scaleY(0.05);
        -webkit-transform: scaleY(0.05);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}

/* Overlay animation */
body:before, body:after {
    content: "";
    height: 50vh;
    width: 100%;
    position: fixed;
    left: 0;
    background: #1c2020;
    z-index: 9998;
    transition: transform 0.6s ease-out;
}
body:before {
    top: 0;
    transform: translateY(-100%);
}
body:after {
    bottom: 0;
    transform: translateY(100%);
}

/* When page is loading */
body.loading {
    overflow: hidden;
}
body.loading:before {
    transform: translateY(0);
}
body.loading:after {
    transform: translateY(0);
}

.page-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.page-loader > div {
    height: 100%;
    width: 8px;
    display: inline-block;
    float: left;
    margin-left: 2px;
    -webkit-animation: delay 0.8s infinite ease-in-out;
            animation: delay 0.8s infinite ease-in-out;
}
.page-loader .bar1 {
    background-color: #754fa0;
}
.page-loader .bar2 {
    background-color: #09b7bf;
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s;
}
.page-loader .bar3 {
    background-color: #90d36b;
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
}
.page-loader .bar4 {
    background-color: #f2d40d;
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}
.page-loader .bar5 {
    background-color: #fcb12b;
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}
.page-loader .bar6 {
    background-color: #ed1b72;
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
}

.navbar .navbar-brand .custom-font {
    font-family: 'k22_monasticregular' !important;
    font-size: 1.7rem;
    color: var(--light-color);
}

/* Navigation */
.navbar {
    background-color: var(--card-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-dark);
}

.search-container .btn{
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 70%, #a54db7 100%) !important;
    border: 0 !important;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    width: 100px;
}

.search-container .search-input:focus, #connect-search:focus {
    outline: none;
    box-shadow: none;
}

.nav-link {
    color: var(--light-color);
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: -webkit-inline-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-link i {
    color: #dc7228;
    margin-right: 8px;
}

.nav-link:hover {
    background-color: #dc7228;
    color: var(--light-color);
}

.nav-link:hover i {
    color: var(--light-color);
}

.navbar .dropdown button {
    font-weight: 400;
    background: transparent;
    border: none;
}

.navbar .dropdown button span:hover {
    color: #dc7228 !important;
}

 .navbar-expand-lg .navbar-toggler {
    display: none;
  }


.dropdown-menu {
    background-color: var(--card-dark);
    border: 1px solid var(--border-dark);
}

.dropdown-toggle::after {
    content: none !important;
    /* color: #dc7228; */
}

.dropdown-item {
    color: var(--text-color);
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #dc7228;
    color: var(--light-color);
}

/* Main Content */
.main-container {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

body.loaded .main-container {
    opacity: 1;
}

/* Add some transition effects for smoother experience */
#mobileSidebar {
    text-align: center;
    transition: all 0.3s ease;
}
#mobileSidebar .sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobileSidebar .sidebar-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

#mobileSidebar .sidebar-link:hover {
    background-color: #dc7228;
}
#mobileSidebar .sidebar-item:hover {
    background-color: #dc7228;
}

#sidebarToggle {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

#sidebarToggle:hover {
    transform: scale(1.05);
}

.left-sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.content-area {
    flex: 1;
    min-width: 0;
}

.right-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.users-section {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border-dark);
}

.recent-posts {
    font-size: 18px !important;
}

.user-box {
    display: inline-block;
    text-align: center;
    margin: 0 8px;
    width: 80px;
    cursor: pointer;
}

.user-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #dc7228;;
    padding: 2px;
    background-color: var(--card-dark);
}

.username {
    font-size: 12px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

/* Posts */
.post-card {
    background: var(--card-dark);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-dark);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.post-header {
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
}

.read-more-link {
    color: var(--light-color);
    text-decoration: none;
    display: none;
}

.read-more-link:hover {
    color: #dc7228;
}

.post-user-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
}

.post-user-info {
    flex: 1;
}

.post-username {
    font-weight: 600;
    margin-bottom: 0;
}

.post-username a {
    color: var(--text-color);
}

.post-time {
    font-size: 12px;
    color: var(--text-light);
}

.post-time i {
    cursor: pointer;
}

.verified-badge {
    color: var(--primary-color);
    margin-left: 5px;
    font-size: 14px;
}

.popular-posts {
    text-decoration: none;
    color: var(--light-color);
}

.post-content {
    padding: 15px 15px 0 15px;
}

.post-description {
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-color);
    white-space: pre-line;
}

/* .whitespace-preserved {
    white-space: pre-line;
} */

.post-image {
    width: 100%;
    border-radius: 8px;
    max-height: 500px;
    object-fit: contain;
    background-color: var(--bg-dark);
}

.post-video {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    max-width: 100%;
    box-sizing: border-box;
    object-fit: contain;
    overflow: hidden;
    height: 500px;
    background-color: var(--bg-dark);
}

.slick-next {
    right: 10px !important;
}

.slick-prev {
    left: 10px !important;
    z-index: 1;
}

.slick-dots li.slick-active button::before {
    color: var(--light-color);
}

.slick-dots li button::before {
    color: var(--light-color);
}

.post-actions {
    display: flex;
    padding: 10px 15px;
}

.post-action {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    color: var(--light-color);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-action:hover {
    color: var(--light-color);
}

.post-action i {
    margin-right: 5px;
    color: #dc7228;
}

.post-action:hover i {
    color: var(--light-color);
}

/* Sidebar */
.sidebar-card {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border-dark);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
    background-color: var(--bg-dark);
    color: var(--text-color);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.profile-card {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-color);
}

.profile-status {
    font-size: 12px;
    color: var(--text-light);
}

.connect-list {
    min-height: 50px;
    max-height: calc(3 * 80px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.popular-list {
    min-height: 50px;
    max-height: calc(3 * 100px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.popular-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dark);
    text-decoration: none;
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-post-img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-post-content {
    flex: 1;
}

.popular-post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-meta {
    font-size: 12px;
    color: var(--text-light);
}

.popular-post-meta i {
    font-size: 11px;
    margin-right: 4px;
}

.video-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #000;
}

.connect-card {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--border-dark);
}

.connect-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
}

.connect-info {
    flex: 1;
}

.connect-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-color);
}

.connect-status {
    font-size: 12px;
    color: var(--text-light);
}

.follow-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

hr {
    border-color: var(--border-dark);
}

.no-reported-posts i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--danger-color);
}

/* Report Modal Styles */
.modal-content {
    background-color: var(--card-dark);
    color: var(--text-color);
    border: 1px solid var(--border-dark);
}

.modal-header {
    border-bottom: 1px solid var(--border-dark);
}

.modal-footer {
    border-top: 1px solid var(--border-dark);
}

.modal-title {
    color: var(--light-color);
}

.modal-dialog-scrollable .modal-body {
    scrollbar-width: thin;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.checkrepo {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.form-check {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.repo-label {
    color: var(--text-color);
    font-size: 0.95rem;
    cursor: pointer;
    margin: 0;
}

.btn-primary {
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 50%, rgba(205, 89, 8, 1) 100%);
    border-color: #dc7228;
}

.btn-primary:hover {
    background-color: linear-gradient(90deg, rgba(220, 114, 40, 1) 50%, rgba(205, 89, 8, 1) 100%);
    border-color: #dc7228;
}

.share-modal .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, 50px);
}

.share-modal-content {
    background-color: #131313;
    border-radius: 20px;
}

.share-copy-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
}

.share-copy-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.share-copy-button, .share-email-button {
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 50%, rgba(205, 89, 8, 1) 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.share-followers-list {
    display: flex;
    overflow: scroll hidden;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-padding: 0px 1.25rem;
    scrollbar-color: #202020 #1a1a1a;
    scrollbar-width: thin;
}

.follower-card {
    display: inline-block;
    text-align: center;
    margin: 0 8px;
    width: 80px;
    cursor: pointer;
}

.follower-username {
    color: #fff;
    font-size: 0.8rem;
}

.share-description {
    background-color: #535353;
    color: #fff;
    padding: 15px;
    margin: 35px 0 20px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

.share-social-icons {
    display: flex;
    justify-content: center;
}

.share-social-icons ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}

.share-social-icons li {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    padding: 20px 0 !important;
    left: 0 !important;
}

.share-social-icons ul li a {
    background-color: #a54db7;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    font-size: 32px;
}

.action-counts {
    padding: 0 20px 0 20px;
}

/* Comments Section */
.comments-section {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-dark);
}

.comment-form button {
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 50%, rgba(205, 89, 8, 1) 100%);
    color: var(--light-color); 
    border: 0;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    width: 150px;
}

.comments-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.close-comments-btn {
    background: none;
    border: none;
    color: #dc7228;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

.close-comments-btn:hover {
    color: var(--light-color);
}

.comment-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    background-color: var(--bg-dark);
    color: var(--text-color);
    resize: none;
}

.comment-input:focus {
    outline: none;
    border-color: #dc7228;
}

.comment {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.comment-user-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 12px;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.comment-username {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 8px;
}

.comment-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

.comment-text {
    color: var(--text-color);
    line-height: 1.5;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.comment-action {
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.comment-action:hover {
    color: #dc7228;
}

.no-comments-container {
    background: var(--card-dark);
    border-radius: 12px;
    height: 100px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-dark);
}

.reply-section {
    display: flex;
    margin-top: 20px;
}

.emojionearea.emojionearea-inline > .emojionearea-editor {
	left: 8px !important;
	right: auto !important;
}

.emojionearea .emojionearea-editor {
	margin-left: 12px;
	padding-left: 10px !important;
}

.emojionearea .emojionearea-button {
	left: 0;
}

.emojionearea .emojionearea-picker.emojionearea-picker-position-top .emojionearea-wrapper::after {right: 0;left: 2px;}
.emojionearea .emojionearea-picker.emojionearea-picker-position-top {left: 0 !important;}

.interact {
    position: relative;
}

.interact a {
    text-decoration: none;
}

/* Consolidated and optimized CSS */
.reactions-emojis {
    display: flex;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity));
    border-radius: 2rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    font-size: 1.8rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1000;
    transform: translate(-50%, -100%);
    left: 50%;
    bottom: -40px;
    list-style: none;
}

.reactions-emojis.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reactions-emojis::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) transparent transparent;
}

.reactions-emojis li {
    margin: 0 0.3rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.reactions-emojis li:hover {
    transform: scale(1.3);
}

.reactions-emojis li img {
    transition: transform 200ms ease-in-out;
}

.reactions-emojis li img:hover {
    transform: scale(1.5) translateY(-0.25rem);
}

.comments-list {
    min-height: 50px;
    max-height: calc(2 * 120px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.login-new {
    padding: 4px 5px 0;
    display: ruby;
}

.login-new a {
  color: #fff !important;
  font-family: 'Poppins';
  font-size: 14px;
}

.badge-danger {
    color: #f80031;
    background-color: #fdd1da;
}

.spinner-border {
    color: #dc7228;
}

.highlighted-hashtag {
    background: none !important;
    color: #dc7228 !important;
    padding: 1px 2px !important;
    text-decoration: none;
    cursor: pointer;
}
.highlighted-mention {
    background: none !important;
    color: #dc7228 !important;
    padding: 1px 2px !important;
}
.highlighted-hashtag:hover , .highlighted-mention:hover {
    color: #a54db7 !important;
}

.pulse a {
    -webkit-animation: pulse 400ms infinite alternate;
    animation: pulse 400ms infinite alternate;
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
}

.blink {
    color: #fff !important;
    animation: flash 1s linear infinite;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}

.post-seen {
  animation: flash 1s linear infinite;
  text-shadow:
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #e60073,
    0 0 40px #e60073,
    0 0 50px #e60073,
    0 0 60px #e60073,
    0 0 70px #e60073;
}

@keyframes flash {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.elevation-popup {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    padding: 20px;
    width: 500px;
    color: white;
    border: 2px solid white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 1001;
    border-radius: 8px;
    transition: opacity 0.3s ease-in-out;
}

.elevation-popup.show {
    display: block;
    opacity: 1;
}

.elevation-popup-close {
    position: absolute;
    top: 0px;
    right: 8px;
    cursor: pointer;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background: none;
    border: none;
}

.elevation-popup-close:hover {
    color: red;
}

.elevation-popup p {
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    padding: 10px 0;
}

@media (max-width: 600px) {
    .post-action {
        font-weight: 400;
        font-size: 12px;
    }
    .elevation-popup {
        top: 30%;
        width: 80%;
        padding: 15px;
    }
    .elevation-popup p {
        font-size: 14px;
    }
    .elevation-popup-close {
        font-size: 18px;
    }
}

@-webkit-keyframes pulse {
    0% { color: #dc7228; }
    100% { color: #fff; }
}

@keyframes pulse {
    0% { color: #dc7228; }
    100% { color: #fff; }
}

/* Responsive */
@media (max-width: 992px) {
    .container{max-width: 100%;}
    .right-sidebar {
        display: none;
    }
    .collapse{display: block!important;flex-basis: 0;flex-grow: 0;}
    ul.navbar-nav{display:none!important;}
    #navbarNav .d-flex.justify-content-end{justify-content: flex-start!important;}
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .left-sidebar {
        display: none;
    }

    .collapse{display: block!important;flex-basis: 0;flex-grow: 0;}
    ul.navbar-nav{display:none!important;}
    #navbarNav .d-flex.justify-content-end{justify-content: flex-start!important;}
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.post-card {
    animation: fadeIn 0.5s ease forwards;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Form controls */
.form-control, .form-control:focus {
    background-color: var(--bg-dark);
    color: var(--text-color);
    border-color: var(--border-dark);
}

.btn-sm {
    color: var(--text-light);
}

.btn-sm:hover {
    color: var(--text-color);
}

/* Change toast background color and border-radius */
.toast {
    background-color: #007bff !important; /* Blue */
    color: #fff !important;
    border-radius: 12px !important;
    padding: 16px;
    font-size: 14px;
}

/* Optional: Style for success, error, etc. */
.toast-success {
    /* background-color: #28a745 !important; Green */
    background-color: #dc7228 !important; /* Orange */
}

.toast-error {
    background-color: #dc3545 !important; /* Red */
}

.toast-info {
    background-color: #17a2b8 !important; /* Teal */
}

.toast-warning {
    background-color: #ffc107 !important; /* Yellow */
}

/* .dev-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
    text-align: center;
    max-width: 80%;
}

.dev-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
}

.dev-popup-close {
    margin-top: 15px;
    padding: 5px 15px;
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 70%, #a54db7 100%);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
} */