body {
    font-family: Arial, sans-serif;
    background-color: #ecf0f1; /* Light grey background consistent with main site */
    margin: 0;
    padding: 0;
}

.header-reviews {
        background-color: #2C3E50; /* Dark blue header */
        color: #FFFFFF; /* White text */
        padding: 1px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed; 
        top: 0; 
        width: 100%; 
        z-index: 1000; 
        height: 100px; 
}

.header-reviews h1 {
    text-align: center;
}

h1 {
    text-align: center;
    color: #2C3E50; /* Dark blue consistent with main headings */
    font-size: 36px;
    margin: 40px 0;
}


.reviews-container {
    width: 80%;
    margin: auto;
    max-width: 800px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.reviews-container h3 {
  color: #2C3E50;
}


.review {
    border: 1px solid #BDC3C7; /* Silver border consistent with form styling */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
}

.stars .fa-star {
    color: #BDC3C7; /* Silver for unfilled stars */
}

.stars .fa-star.checked {
    color: #FFD700; /* Gold for filled stars */
}

.review-text {
    font-size: 1.1em;
    color: #2C3E50; /* Dark blue for readability and consistency */
    margin-top: 10px;
    line-height: 1.6;
    word-wrap: break-word;
}

.review-date {
    color: #888888;
    font-size: 0.9em;
    margin-top: 5px;
}

.leave-review {
    text-align: center;
    margin-top: 30px;
}

.button-leave-review {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2C3E50; /* Dark blue button background */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button-leave-review:hover {
    background-color: #82aedb; /* Light blue hover effect for button consistency */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .reviews-container {
        width: 90%;
    }

    .button-leave-review {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
}

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination-button {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    text-decoration: none;
    color: #2C3E50;
    background-color: #BDC3C7;
    border-radius: 5px;
    font-weight: bold;
}

.pagination-button.active {
    background-color: #2C3E50;
    color: #FFFFFF;
}

.pagination-button:hover {
    background-color: #82aedb;
    color: #FFFFFF;
}

.leave_review{
    padding: 20px;
            margin: 40px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
