.profile-container {
    display: flex;
    max-width: 1000px;
    margin: 100px auto 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

body {
    background-color: #f6f9ff;
}

.sidebar {
    width: 280px;
    padding: 24px;
    border-right: 1px solid #e0e0e0;
    background-color: #f7f8fa;
}

.user-info-box {
    margin-bottom: 24px;
}

.user-info-box h2 {
    font-size: 1.2em;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
}

.user-info-box p {
    font-size: 0.95em;
    color: #555;
    margin: 8px 0;
}

.menu-tabs button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    text-align: left;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.menu-tabs button:hover {
    background-color: #e9ecef;
}

.menu-tabs button.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.content-area {
    flex-grow: 1;
    padding: 24px;
}

.content-panel {
    display: none;
}

.content-panel.active {
    display: block;
}

.content-panel .list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.content-panel .list-item:last-child {
    border-bottom: none;
}

.content-panel .list-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 15px;
}

.content-panel .list-item a {
    text-decoration: none;
    color: #0056b3;
    font-weight: bold;
}

.content-panel .list-item a:hover {
    text-decoration: underline;
}

.content-panel .list-item .post-date {
    margin-left: auto;
    font-size: 0.9em;
    color: #888;
}

.unlike-btn {
    margin-left: auto;
    padding: 4px 8px;
    border: 1px solid #ff4d4d;
    background-color: transparent;
    color: #ff4d4d;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.unlike-btn:hover {
    background-color: #ff4d4d;
    color: white;
}