/* Left Side Menu Styles */
.left-side-menu-container {
    width: 100%;
    background-color: #fff;
    border-right: 1px solid #e1e8ed;
    z-index: 1000;
    display: flex;
    transition: transform 0.3s ease;
}

.left-side-menu-container.right {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid #e1e8ed;
}

.left-side-menu-inner {
    width:200PX;
    display: flex;
    flex-direction: column;
    padding: 15px;
    overflow-y: auto;
}

.left-side-menu-header {
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e8ed;
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-profile img {
    border-radius: 50%;
    margin-right: 10px;
}

.login-prompt a {
    color: #1da1f2;
    text-decoration: none;
}

.left-side-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-side-menu-nav li {
    margin-bottom: 10px;
}

.left-side-menu-nav a {
    display: block;
    padding: 10px;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.left-side-menu-nav a:hover {
    background-color: #f5f8fa;
}

.left-side-menu-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e1e8ed;
}

.left-side-menu-footer a {
    color: #1da1f2;
    text-decoration: none;
}

.left-side-menu-content {
   padding: 20px;
    width: 100%;
}

.menu-content-header {
    display: none;
    margin-bottom: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
}
.outuser img{
    width: 20px;
    height: 20px;
}
.title-lista{      margin: 0;  }
  .title-lista a{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.posts-container {
    max-width: 100%;
    margin: 0 auto;
}
.posts-items{
    cursor: pointer;
    position: relative;
    background: #fff;
    padding: 12px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post-item {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e1e8ed;
    border-radius: 5px;
    background-color: #fff;
}

.post-header {
    display: flex;
    align-items: center;
}
.post-authors{      display: flex;        align-items: center;  }
.post-header img {
    border-radius: 50%;
    margin-right: 10px;
}

.post-author {
    flex-grow: 1;
}

.post-author a {
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
}

.post-date {
    display: block;
    font-size: 12px;
    color: #657786;
}

.follow-button {
    background-color: #1da1f2;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.follow-button.following {
    background-color: #fff;
    color: #1da1f2;
    border: 1px solid #1da1f2;
}

.follow-button:hover {
    background-color: #1991da;
}

.follow-button.following:hover {
    background-color: #eaf5fd;
}

.post-thumbnail {
    margin: 10px 0;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-excerpt {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.post-meta {
    font-size: 12px;
    color: #657786;
}

.post-meta span {
    margin-right: 10px;
}

.load-more {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f5f8fa;
    border: 1px solid #e1e8ed;
    border-radius: 5px;
    color: #1da1f2;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.load-more:hover {
    background-color: #e1e8ed;
}

/* Mobile styles */
@media (max-width: 768px) {
    .left-side-menu-container {
        transform: translateX(-100%);
        z-index: 1001;
    }
    
    .left-side-menu-container.right {
        transform: translateX(100%);
    }
    
    .left-side-menu-container.active {
        transform: translateX(0);
    }
    
    .left-side-menu-content {
        margin-left: 0;
        width: 100%;
    }
    
    .menu-content-header {
        display: flex;
        align-items: center;
    }
    
    .menu-toggle {
        display: block;
    }
}