body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    ;
}

.header {
    background-color: #ffffff;
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.header .search-bar {
    padding: 10px;
    width: 250px;
    border-radius: 20px;
    border: 1px solid #eaeaea;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header .search-bar:focus {
    border-color: #333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    padding: 5px;
    /* max-width: 600px; */
    margin: auto;
}

.post {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 5px;
    background-color: #fff;
    overflow: hidden;
}

.post-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.username {
    font-weight: bold;
    color: #333;
}

.post-image-wrapper {
    max-height: 400px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    display: block;
}

.post-actions {
    padding: 10px;
    display: flex;
    gap: 15px;
    font-size: 20px;
    background-color: #f9f9f9;
}
 
.post-description {
    padding: 10px;
}