.text_center {
    text-align: center;
}

.text_underline {
    text-decoration: underline;
}

.reviews-section {
    width: 80%;
    max-width: 800px;
    margin: 0px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
}

.review-card {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 13px;
    font-weight: bold;
    margin: 0;
}

.review-date {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.review-rating {
    font-size: 18px;
    color: #ffcc00; /* Gold color for stars */
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
}

.pagination button:hover {
    background-color: #005bb5;
}



