/* General Page Styling */
.testimonials-page {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.page-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.survey-link {
    color: #007bff;
    text-decoration: none;
}

.survey-link:hover {
    text-decoration: underline;
}

/* Sorting Section */
.sorting-section {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
}

.sorting-select {
    padding: 5px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Testimonials List */
.testimonials-list {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    font-weight: bold;
}

.date {
    font-size: 0.9rem;
    color: #555;
}

.testimonial-text {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #555;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

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