@charset "UTF-8";

.review-container {
    margin: auto;
}
.review-header {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.review-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.rating-bars {
    width: 60%;
}
.rating-bars div {
    display: flex;
    align-items: center;
}
.bar {
    width: 100px;
    height: 8px;
    background: #ccc;
    margin-left: 20px;
    margin-right: 20px;
}
.write-review {
    background: black;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}
.customer-reviews {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.no-reviews {
    text-align: center;
    font-weight: bold;
    color: #666;
    margin-top: 10px;
}
