body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--uw-white-1);
    border-top: 1px solid var(--uw-white-3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-icon {
    flex-shrink: 0;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    margin: 0 0 8px 0;
    color: var(--uw-text-1);
    font-size: 18px;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    color: var(--uw-text-2);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--uw-blurple-1);
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: 1px solid var(--uw-white-3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.1s;
    background: var(--uw-white-2);
    color: var(--uw-text-1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-btn:hover {
    background: var(--uw-white-3);
    border-color: var(--uw-white-4);
}

.cookie-accept-all {
    background: var(--uw-blurple-1);
    color: white;
    border-color: var(--uw-blurple-1);
}

.cookie-accept-all:hover {
    background: var(--uw-blurple-2);
    border-color: var(--uw-blurple-2);
    color: white;
}

.cookie-accept-necessary {
    background: var(--uw-white-2);
    color: var(--uw-text-1);
}

.cookie-settings {
    background: var(--uw-white-2);
    color: var(--uw-text-1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.cookie-settings-content {
    background: var(--uw-white-1);
    border-radius: 20px;
    border: 1px solid var(--uw-white-3);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid var(--uw-white-3);
}

.cookie-settings-header h2 {
    margin: 0;
    color: var(--uw-text-1);
    font-size: 24px;
    font-weight: 600;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--uw-text-2);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s;
}

.cookie-settings-close:hover {
    background: var(--uw-white-2);
    color: var(--uw-text-1);
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-settings-body > p {
    margin: 0 0 30px 0;
    color: var(--uw-text-2);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--uw-white-2);
    border-radius: 15px;
    border: 1px solid var(--uw-white-3);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    margin: 0;
    color: var(--uw-text-1);
    font-size: 16px;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    color: var(--uw-text-2);
    font-size: 13px;
    line-height: 1.4;
}

/* Toggle Switch Styles */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--uw-white-3);
    transition: 0.1s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.1s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--uw-blurple-1);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--uw-blurple-1);
    cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-settings-footer {
    padding: 20px 30px 30px 30px;
    border-top: 1px solid var(--uw-white-3);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-save-preferences {
    background: var(--uw-white-2);
    color: var(--uw-text-1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-consent-text {
        min-width: auto;
    }
    
    .cookie-consent-actions {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-settings-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 20px;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
    
    .cookie-settings-footer .cookie-btn {
        width: 100%;
    }
}

.ico-small{
    font-size:14px !important;
    font-weight: 1000 !important;
    justify-self: center !important;
    color:var(--uw-text-10);
}

.navbar {
    font-family: "Roboto", sans-serif;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 5px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    background:var(--uw-white-1);
    transition:0.1s;
    display: none;
}


.navbar .logo-container {
    display: flex;
    align-items: center;
}

.navbar .logo-container img {
    height: 26px; /* Adjust logo size as needed */
    margin-right: 10px;
    margin-top:2px;
    background:transparent !important;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar a {
    cursor:pointer;
    background: var(--uw-white-2);
    color:var(--uw-text-1);
    text-decoration: none;
    font-size: 14px;
    transition:0.1s;
}

.navbar a:hover {
    background-color: var(--uw-white-3);
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    background-color: transparent !important;
    transition:0.1s;
    border:1px solid var(--uw-white-2);
}

.profile-pic:hover{
    border:1px solid var(--uw-blurple-1);
}

.navbar-button {
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    padding:5px 20px;
    background-color: var(--uw-white-2) !important;
    border:1px solid var(--uw-white-3) !important;
    transition:0.1s;
}

.navbar-button:hover {
    background-color: var(--uw-white-3) !important;
    border:1px solid var(--uw-white-4) !important;
}

/* Profile dropdown - styled like mini sidebar */
.profile-dropdown-container {
    position: relative;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--uw-white-1);
    border: 1px solid var(--uw-white-3);
    border-radius: 20px;
    z-index: 1001;
    display: none;
    margin-top: 8px;
    overflow: hidden;
    transition: 0.1s;
}

.profile-dropdown:hover {
    border: 1px solid var(--uw-white-4);
}

.profile-dropdown.show {
    display: block;
}

.profile-dropdown-header {
    padding: 16px 20px;
    background: var(--uw-white-2);
    border-bottom: 1px solid var(--uw-white-3);
}

.profile-dropdown-user {
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-dropdown-user a {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: transparent;
}

.profile-dropdown-pic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    border: 1px solid var(--uw-white-3) ;
    margin-right: 10px;
}

.profile-dropdown-pic:hover {
    border: 1px solid var(--uw-blurple-1);
}

.profile-dropdown-info {
    flex: 1;
}

.profile-dropdown-username {
    font-size: 14px;
    font-weight: 700;
    color: var(--uw-text-1);
    margin-bottom: 2px;
    text-align: left;
}

.profile-dropdown-points {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--uw-text-2);
    font-size: 11px;
    font-weight: 400;
}

.profile-dropdown-menu {
    padding: 16px 0;
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--uw-text-1) !important;
    font-size: 12px !important;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    background: transparent !important;
    border: 1px solid transparent;
    transition: 0.1s;
    margin: 2px 8px;
}
.profile-badge {
    margin-left: 4px;
    vertical-align: middle;
}

.profile-dropdown-item:hover {
background: var(--uw-white-2) !important;
    border: 1px solid var(--uw-white-3);
}

.profile-dropdown-item img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 4px;
}

.profile-dropdown-divider {
    height: 1px;
    background: var(--uw-white-3);
    margin: 8px 16px;
}


.signup-btn {
    background: var(--uw-white-2) !important;
    border:none;
    color: var(--uw-text-1) !important;
    padding: 5px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: 0.1s;
    font-size: 12px !important;
    border:1px solid var(--uw-white-3) !important;
}

.login-btn {
    background: var(--uw-blurple-1) !important;
    border:none;
    color: var(--uw-white-1) !important;
    padding: 5px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: 0.1s;
    font-size: 12px !important;
    border:1px solid var(--uw-blurple-2) !important;
}

.login-btn:hover{
    background: var(--uw-blurple-2) !important;
    border:1px solid var(--uw-blurple-2) !important;
}

.signup-btn:hover{
    background: var(--uw-white-3) !important;
    border:1px solid var(--uw-white-4) !important;
}

.notification-dot {
    position: absolute;
    top: -4px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    background: var(--uw-blurple-1);
    border:1px solid var(--uw-blurple-2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: white;
    padding: 0 4px;
    /* box-shadow: 0 2px 8px var(--uw-blurple-2); */
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
}

.notification-dot:empty {
    width: 10px;
    min-width: 10px;
    padding: 0;
}

.notification-dot.hide {
    transform: scale(0);
    opacity: 0;
}

.message-button-wrapper {
    position: relative;
}

.bi-plus-circle-fill,
.bi-chat-fill,
.bi-search,
.bi-joystick {
    font-size: 16px; /* Adjust icon size */
    color: #1d1f23;
    font-weight: bold;
}

.bi-person-circle,
.bi-heart-fill,
.bi-gear-fill,
.bi-box-arrow-right,
.bi-building-fill {
    font-size: 16px; /* Adjust icon size */
    color: #1d1f23;
    padding: 10px 12px;
    font-weight: bold;
    background-color: #e4e6eb;
    border-radius: 50px;
    margin-right: 5px;
}

.bi-bell-fill {
    color: #1d1f23;
}

.notification-dropdown {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    color: var(--uw-text-1);
    background-color: var(--uw-white-1);
    padding: 24px;
    z-index: 1000;
    min-width: 400px;
    margin-top: 16px;
    margin-right: 80px !important;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: none;
    max-height: 80vh;
    opacity: 1;
    transform: none;
    pointer-events: all;
}

.notification-dropdown.show {
    display: block;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--uw-white-3);
}

.notification-header h3 {
    margin: 0;
    font-size: 16px;
    color: var(--uw-text-1);
}

.clear-all-button {
    background: none;
    border: none;
    color: var(--uw-blurple-1);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: 0.2s;
}

.clear-all-button:hover {
    background: var(--uw-white-2);
}

.notification-group {
    margin-bottom: 20px;
    transition: none;
}

.notification-group.clearing {
    display: none;
}

.notification-group.clearing {
    display: none;
}

.notification-group-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.notification-group-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.notification-group-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--uw-text-2);
    margin: 0;
}

 

.notification-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 8px;
    object-fit: cover;
}

/* Default icon style when no icon is set */
.default-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 8px;
    background-color: var(--uw-blurple-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-text strong {
    display: block;
    font-size: 14px;
    color: var(--uw-text-1);
    margin-bottom: 4px;
}

.notification-text p {
    margin: 0;
    font-size: 13px;
    color: var(--uw-text-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delete-button {
    background: none;
    border: none;
    color: var(--uw-text-2);
    width: 32px;
    height: 32px;
    padding: 5px 10px !important;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.1s;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--uw-white-2);
}

.delete-button i {
    font-size: 16px;
}

.delete-button:hover {
    background: var(--uw-white-1);
    border:1px solid var(--uw-red-1);
    color: var(--uw-red-0);
}

.empty-notifications {
    text-align: center;
    padding: 24px;
    color: var(--uw-text-2);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.empty-notifications.show {
    opacity: 1;
    transform: scale(1);
}

.empty-notification-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    object-fit: contain;
}

.empty-notifications p {
    margin: 0;
    font-size: 14px;
}

.bi-chat, .bi-heart, .bi-person-plus-fill, .bi-activity {
    font-size: 16px; /* Adjust icon size */
    color: #fff;
    padding: 10px 12px;
    font-weight: bold;
    background-color: #0866ff;
    border-radius: 50px;
    margin-right: 12px;
}

.bi-airplane-fill, .bi-exclamation-triangle-fill{
    font-size: 16px; /* Adjust icon size */
    color: #fff;
    padding: 10px 12px;
    font-weight: bold;
    background-color: #f23f43;
    border-radius: 50px;
    margin-right: 12px;
}

.bi-eye-fill {
    font-size: 16px; /* Adjust icon size */
    color: #f23f43;
}

.navbar-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Ensure all content stays within viewport */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-around;
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background: var(--uw-white-1);
        padding: 20px !important;
        border:1px solid var(--uw-white-3);
        z-index: 1000;
    }
    
    /* Add padding to content to create space above navbar */
    .content {
        padding-bottom: 100px; /* Increased padding to create space above navbar */
    }

    .search-bar {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .dropdown-menu {
        min-width: 250px;
    }

    .notification-dropdown {
        min-width: 250px;
        margin-right: 0 !important;
    }
}

textarea:focus{
    border-color:var(--uw-blurple-1) !important;
    background-color:var(--uw-white-2) !important;
    outline:none;
}

textarea:hover{
    border-color:var(--uw-blurple-1) !important;
    background-color:var(--uw-white-2) !important;
    outline:none;
}

input:focus{
    border-color:var(--uw-blurple-1) !important;
    background-color:var(--uw-white-2) !important;
    outline:none;
}

input:hover{
    border-color:var(--uw-blurple-1) !important;
    background-color:var(--uw-white-2) !important;
    outline:none;
}

select:focus{
    border:1px solid var(--uw-blurple-1) !important;
    outline:none;
}

select:hover{
    border:1px solid var(--uw-blurple-1) !important;
    outline:none;
}

/* Media Query for extra small screens */
@media (max-width: 480px) {
    .navbar h1 {
        font-size: 20px;
    }

    .navbar .nav-links {
        gap: 5px;
    }

    .navbar-button,
    .signup-btn,
    .login-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 200px;
        padding: 10px;
    }

    .notification-dropdown {
        min-width: 200px;
        padding: 10px;
    }

    .dropdown-menu button {
        padding: 10px;
        font-size: 14px;
    }

    .search-bar button {
        font-size: 14px;
        padding: 6px 10px;
    }

    .search-bar input[type="text"] {
        font-size: 14px;
        padding: 8px;
    }

    .notification-item {
        padding: 10px;
    }
}

::-webkit-scrollbar {
    width: 0px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #fff;
    transition:0.3s;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    border: 6px solid transparent;
    background-clip: content-box;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #c9c9c9;
  }

/* Mobile Navigation Bar */
.mobile-nav {
    display: none;
    position: fixed;
    background: var(--uw-white-1);
    padding: 12px 0;
    z-index: 1000;
    bottom:0px;
    left:0px;
    right:0px;
    border-top:1px solid var(--uw-white-3);
}

.mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: var(--uw-text-1);
    text-decoration: none;
    font-size: 12px;
    width: 20%;
    position: relative;
    cursor: pointer;
    transition: 0.1s;
    padding: 12px 0;
    min-height: 48px;
    
    
}

.mobile-nav .nav-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
    padding: 6px;
    border-radius: 12px;
    transition: background-color 0.1s;
    background-color: var(--uw-white-2);
}

.mobile-nav .nav-item:hover img {
    background-color: var(--uw-white-3);
}

.mobile-nav .nav-item span {
    font-size: 12px;
    margin-top: 4px;
}

.mobile-nav .nav-item:hover {
    color: var(--uw-blurple-1);
}

.mobile-nav .nav-item:hover {
    color: var(--uw-blurple-1);
}

@media (max-width: 1500px) {
    .mobile-nav {
        display: flex;
        justify-content: space-around;
    }
    
    /* Adjust content padding to account for mobile nav */
    .content {
        margin-top:0px !important;
        padding:0px;
        padding-bottom: 70px;
    }
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    background: var(--uw-white-1);
    border: 1px solid var(--uw-white-3);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: slideIn 0.3s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-message {
    color: var(--uw-text-1);
    font-size: 14px;
    flex: 1;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--uw-blurple-1);
    animation: progress 3s linear forwards;
}

.toast.success .toast-progress {
    background: var(--uw-blurple-1);
}

.toast.error .toast-progress {
    background: var(--uw-red-1);
}

.toast.warning .toast-progress {
    background: var(--uw-red-1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Add JavaScript to handle toast removal */
.toast {
    animation: slideIn 0.3s ease-out forwards;
}

.toast.hide {
    animation: slideOut 0.3s ease-out forwards;
}

/* Mobile Sidebar Modal */
.mobile-sidebar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--uw-white-1);
    border-right: 1px solid var(--uw-white-3);
    overflow-y: auto;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--uw-white-3);
    background: var(--uw-white-1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-sidebar-userinfo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.mobile-sidebar-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--uw-white-3);
}

.mobile-sidebar-userinfo-text {
    display: flex;
    flex-direction: column;
}

.mobile-sidebar-welcome-text {
    font-size: 12px;
    color: var(--uw-text-3);
    font-weight: 400;
}

.mobile-sidebar-userinfo-username {
    font-size: 14px;
    color: var(--uw-text-1);
    font-weight: 600;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    color: var(--uw-text-2);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-close:hover {
    background: var(--uw-white-2);
    color: var(--uw-text-1);
}

.mobile-sidebar-nav {
    padding: 0;
}

.mobile-sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-nav li {
    margin: 0;
    padding: 0;
}

.mobile-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--uw-text-1);
    text-decoration: none;
    transition: 0.2s;
    border-bottom: 1px solid var(--uw-white-2);
}

.mobile-sidebar-nav a:hover {
    background: var(--uw-white-2);
    color: var(--uw-blurple-1);
}

.mobile-sidebar-nav b {
    color: var(--uw-text-2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 20px;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mobile-sidebar-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Mobile nav button styling */
.mobile-sidebar-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
}

.mobile-sidebar-btn:hover {
    background: var(--uw-white-2);
}

.mobile-sidebar-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-sidebar-content {
        width: 90%;
    }
    
    .mobile-sidebar-nav a {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .mobile-sidebar-icon {
        width: 22px;
        height: 22px;
    }
}