/* Styling the comments section */
.comments-section {
    margin-top: 10px;
    padding: 10px;
}

/* Each comment block */
.comment {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

/* Name and email */
.comment p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Comment text */
.comment p:last-child {
    font-size: 14px;
    line-height: 1.6;
}

/* Comment form */
form {
    margin-top: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f1f1f1;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}
/* Center the pagination container */
.pagination-container {
    text-align: center; /* Center the content horizontally */
    margin: 20px 0; /* Add some margin above and below the pagination */
}

/* Style the pagination list */
.pagination {
    display: inline-block; /* Make sure the list behaves like a block-level element */
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Style each pagination item */
.page-item {
    display: inline-block;
    margin: 0 0px; /* Add spacing between pagination items */
}

