.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.image-section {
    margin-bottom: 20px;
}

#mainImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.interaction-buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 20px 0;
}

.button {
    flex: 1;
    padding: 8px 12px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

#likeButton {
    background-color: #FF6F61;
}

#likeButton:hover {
    background-color: #E45750;
}

#shareButton {
    background-color: #6B5B95;
}

#shareButton:hover {
    background-color: #554176;
}

#commentButton {
    background-color: #88B04B;
}

#commentButton:hover {
    background-color: #6E8D3A;
}

#followButton {
    background-color: #45B8AC;
}

#followButton:hover {
    background-color: #358D82;
}