    * {
        margin: 0;
        padding: 0;
        font-family: 'poppins', sans-serif;
        box-sizing: border-box;
    }
    
     :root {
        --body-color: #efefef;
        --nav-color: rgb(141, 89, 41);
        --bg-color: #fff;
    }
    
    .dark-theme {
        --body-color: #0a0a0a;
        --nav-color: #000;
        --bg-color: #000;
    }
    
    body {
        background: var(--body-color);
        transition: background 0.3s;
    }
    
    .container {
        display: flex;
        justify-content: space-between;
        padding: 13px 5%;
    }
    
    .main-content {
        flex-basis: 47%;
    }
    
    .imp-links a,
    .shortcut-links a {
        text-decoration: none;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        color: #626262;
        width: fit-content;
    }
    
    .imp-links a img {
        width: 25px;
        margin-right: 15px;
    }
    
    .imp-links a:last-child {
        color: rgb(141, 89, 41);
    }
    
    .imp-links {
        border-bottom: 1px solid #ccc;
    }
    
    .shortcut-links a img {
        width: 40px;
        border-radius: 4px;
        margin-right: 15px;
    }
    
    .shortcut-links p {
        margin: 25px 0;
        color: #626262;
        font-weight: 500;
    }
    
    .event {
        display: flex;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .left-event {
        border-radius: 10px;
        height: 65px;
        width: 65px;
        margin-right: 15px;
        padding-top: 10px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .left-sidebar {
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .event p {
        font-size: 12px;
    }
    
    .event a {
        font-size: 12px;
        text-decoration: none;
        color: rgb(141, 89, 41);
    }
    
    .left-event span {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgb(141, 89, 41);
        color: #fff;
        font-size: 10px;
        padding: 4px 0;
    }
    
    .write-post-container {
        width: 100%;
        background: var(--bg-color);
        border-radius: 6px;
        padding: 20px;
        color: #626262;
    }
    
    .post-input-container {
        padding-left: 55px;
        padding-right: 20px;
    }
    
    .post-input-container textarea {
        width: 100%;
        border: 0;
        outline: 0;
        border-bottom: 1px solid #ccc;
        background: transparent;
        resize: none;
    }
    
    .add-post-links {
        display: flex;
        margin-top: 10px;
    }
    
    .add-post-links a {
        text-decoration: none;
        display: flex;
        align-items: center;
        color: #626262;
        margin-right: 30px;
        font-size: 13px;
    }
    
    .add-post-links a img {
        width: 20px;
        margin-right: 10px;
    }
    
    .post-container {
        width: 100%;
        background: var(--bg-color);
        border-radius: 6px;
        padding: 20px;
        color: #626262;
        margin: 20px 0;
    }
    
    .post-text {
        color: #2e2c2c;
        margin: 15px 0;
        font-size: 15px;
    }
    
    .post-text span {
        color: #626262;
        font-weight: 500;
    }
    
    .post-text a {
        color: rgb(141, 89, 41);
        text-decoration: none;
    }
    
    .post-img {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 5px;
    }
    
    .post-video {
        width: 80%;
        border-radius: 4px;
        margin-bottom: 5px;
        height: 300px;
    }
    
    .post-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .activity-icons div img {
        width: 18px;
        margin-right: 10px;
    }
    
    .activity-icons div {
        display: inline-flex;
        align-items: center;
        margin-right: 30px;
    }
    
    .post-profile-icon {
        display: flex;
        align-items: center;
    }
    
    .post-profile-icon img {
        width: 20px;
        border-radius: 50%;
        margin-right: 5px;
    }
    
    .post-row a {
        color: #9a9a9a;
    }
    
    .load-more-btn {
        display: block;
        margin: auto;
        cursor: pointer;
        padding: 5px 10px;
        border: 1px solid #9a9a9a;
        color: #626262;
        background: transparent;
        border-radius: 4px;
    }
    
    .footer {
        text-align: center;
        color: #9a9a9a;
        padding: 10px 0 20px;
        font-size: 13px;
    }
    /* Mobile-specific styles */
    
    @media screen and (max-width: 768px) {
        /* Container adjustments */
        .container {
            padding: 0;
            margin: 0;
            width: 100%;
        }
        /* Hide stories and left sidebar */
        .left-sidebar {
            display: none;
        }
        /* Hide right sidebar (advertisements) */
        .right-sidebar {
            display: none;
        }
        /* Main content takes full width */
        .main-content {
            flex: 0 0 100%;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        /* Adjust post container for full width */
        .post-container {
            padding: 10px 0;
            margin: 0 0 10px 0;
            background: #fff;
            border-radius: 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            width: 100%;
        }
        .post-row {
            padding: 0 10px;
        }
        .post-text {
            padding: 0 10px;
        }
        .post-img {
            width: 100%;
            height: auto;
        }
        /* Activity icons adjustments */
        .activity-icons {
            padding: 0 10px;
        }
        .activity-icons div {
            padding: 8px 0;
        }
        /* Write post container adjustments */
        .write-post-container {
            padding: 10px 0;
            background: #fff;
            border-radius: 0;
            margin: 0 0 10px 0;
            width: 100%;
        }
        .user-profile {
            padding: 0 10px;
        }
        .post-input-container {
            padding: 0 10px;
        }
        .post-input-container textarea {
            padding: 10px;
            width: 100%;
        }
        .add-post-links {
            padding: 0 10px;
        }
        /* Load more button adjustments */
        .load-more-btn {
            width: 100%;
            margin: 10px 0;
            border-radius: 0;
        }
    }
    
    .story-preview-container {
        max-width: 100%;
        margin-top: 15px;
    }
    
    .story-preview-container img,
    .story-preview-container video {
        max-width: 100%;
        max-height: 300px;
        object-fit: contain;
    }
    
    .story-creator .form-control {
        resize: none;
    }