/* Reviews and Feedback Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* Reviews Section */
.reviews-section {
    margin-top: 3rem;
}

/* Reviews Grid for Manager View */
.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

/* Review Card Styles */
.review-card {
    background: white;
    border: 1px solid rgba(255, 182, 193, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.1);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    border-color: rgba(255, 182, 193, 0.3);
}

/* Reviewer Information */
.reviewer-name {
    color: #5a3e36;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.reviewer-name i {
    color: #ff9aa2;
}

/* Review Text */
.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Star Rating */
.star-rating {
    color: #ffd93d;
    margin-bottom: 0.5rem;
}

/* Review Form Styling */
.review-form {
    background: linear-gradient(135deg, #fff 0%, #fef9f8 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 182, 193, 0.2);
    box-shadow: 0 5px 25px rgba(255, 182, 193, 0.15);
}

.review-form h3 {
    font-family: 'Playfair Display', serif;
    color: #5a3e36;
}

.review-form .form-label {
    color: #5a3e36;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Review Form Controls */
.review-form .form-control {
    background: #ffffff !important;
    border: 2px solid #ffdee9 !important;
    border-radius: 15px !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    color: #2d3436 !important;
}

.review-form .form-control:focus {
    outline: none;
    border-color: #ff9aa2 !important;
    box-shadow: 0 0 0 4px rgba(255, 154, 162, 0.1) !important;
    background: #ffffff !important;
    color: #2d3436 !important;
}

.review-form .form-control::placeholder {
    color: #95a5a6;
    opacity: 0.8;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-form,
    .review-card {
        padding: 1.25rem;
    }

    .review-form h3 {
        font-size: 1.5rem;
    }

    .reviews-section {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .review-form,
    .review-card {
        padding: 1rem;
    }

    .review-form h3 {
        font-size: 1.3rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}
