/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    background-color: #121212;
    font-family: 'Inter', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

/* Main layout: Flex 3-column */
.main-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
}

/* Left Sidebar */
.sidebar-left {
    width: 20%;
    padding: 10px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: fit-content;
}

/* Middle Content */
.middle-page {
    width: 60%;
    padding: 10px;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    min-height: 100vh;
}

/* Right Sidebar */
.sidebar-right {
    width: 20%;
    padding: 10px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh
}

.mobile-nav-container {
    display: none;
}



/* Add this to style.css */

/* Add this to style.css */

/* Mobile layout */

@media (max-width: 1024px) {

    .mobile-nav-container {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar-left {
        display: none !important; /* Hide the desktop sidebar */
    }
    
    .middle-page {
        width: 100%;
        border-left: none;
        border-right: none;
        padding-bottom: 80px; /* Space for mobile nav */
    }
    
    .sidebar-right {
        display: none !important; /* Hide right sidebar on mobile */
    }
    
    /* Mobile bottom navigation */
 /* Mobile Bottom Nav Updates */
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #b2bec3;
    text-decoration: none;
    font-size: 11px;
    padding: 5px 8px;
    position: relative;
    transition: all 0.2s;
    flex: 1;
    max-width: 60px;
}

.mobile-nav-item i, 
.mobile-nav-item .material-symbols-outlined {
    font-size: 20px;
    margin-bottom: 3px;
    transition: all 0.2s;
}

.mobile-nav-item.active {
    color: #6c5ce7;
}

.mobile-nav-item:hover {
    color: #6c5ce7;
}

/* Battle Icon Specific Styles */
.mobile-nav-item .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.mobile-nav-item.active .material-symbols-outlined {
    color: #ff7675;
}

.mobile-nav-item:hover .material-symbols-outlined {
    color: #ff7675;
}

/* Create Button */
.mobile-create-container {
    position: relative;
    flex: 0 0 auto;
    margin: 0 5px;
}

.mobile-create-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(-15px);
    box-shadow: 0 3px 15px rgba(108, 92, 231, 0.4);
    transition: all 0.3s;
    z-index: 1001;
}

.mobile-create-btn:hover {
    transform: translateY(-15px) scale(1.1);
}

.mobile-create-btn:active {
    transform: translateY(-15px) scale(0.95);
}

/* Notification Bubbles */
.notification-bubble, 
.message-bubble {
    position: absolute;
    top: -2px;
    right: 2px;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bubble {
    background: #fd79a8;
    color: white;
}

.message-bubble {
    background: #00cec9;
    color: #121212;
}

/* Create Options Dropdown */
/* Create Options Dropdown */
.create-options {
    position: fixed; /* Changed from absolute to fixed */
    bottom: 65px;
    right: 10px;
    background: rgba(30, 33, 40, 0.98);
    border-radius: 12px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1001;
    border: 1px solid #2f3336;
    transform-origin: bottom right;
    animation: fadeInUp 0.2s ease-out;
}

.create-options.show {
    display: flex;
}

.create-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #e7e9ea;
    text-decoration: none;
    border-radius: 8px;
    gap: 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.create-option i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.create-option:hover {
    background: rgba(108, 92, 231, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

}



/* Tablet layout */
@media (min-width: 768px) and (max-width: 1024px) {
    .sidebar-left {
        display: none !important;
    }
    
    .middle-page {
        width: 100%;
    }
    
    .sidebar-right {
        display: none !important;
    }
}

/* Post Composer Styles */



