.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

.add-review form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.add-review input, 
.add-review textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.add-review button {
    align-self: flex-start;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.add-review button:hover {
    background-color: #45a049;
}

.reviews-list {
    margin-top: 30px;
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.review-card h3 {
    margin: 0;
}

.review-card .review-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
