/* Like, Comment, and Share Buttons */
.action-buttons{
    display:flex;
    justify-content: center;
}


.action-button {
    margin-top: 20px;
    text-align: center; /* Center the buttons */
}

.action-button button {
    padding: 10px 20px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Add margin between buttons */
}

.action-button button:hover {
    background-color: #0056b3;
}

.action-button button i {
    margin-right: 5px;
}

/* Align Like and Share Buttons Next to Each Other */
.like-button,
.share-button {
    display: inline-block; /* Display buttons next to each other */
}

/* Comment Section */
#comment-section {
    margin-top: 20px;
    text-align: center; /* Center the comment section */
    max-width: 500px; /* Set maximum width */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
}

#comment-input {
    width: 100%; /* Make the input field full width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    resize: vertical; /* Allow vertical resizing */
}

#comment-button {
    padding: 10px 20px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

#comment-button:hover {
    background-color: #0056b3;
}
