.testimonials_view_section {
    /* Section specific styles */
}

.testimonial-view-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.testimonial-view-header h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px; /* Space between meta items */
    font-size: 0.9em;
    color: #777;
}

.testimonial-meta .rating {
    color: #f8b400; /* Star color */
}

.testimonial-meta .rating i {
    font-size: 0.95em;
}

.testimonial-detail-content {
    padding: 10px 0;
}

.testimonial-detail-image {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Limit image height */
    display: block;
    margin: 0 auto 25px auto; /* Center image and add bottom margin */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-text {
    line-height: 1.8;
    color: #444;
    font-size: 1em;
    padding: 10px;
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}

.testimonial-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.testimonial-actions .btn,
.testimonial-actions form {
    margin-left: 5px;
}

.testimonial-actions form {
    display: inline-block;
}
.testimonial-view-content{
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .testimonial-meta {
        gap: 8px;
        align-items: flex-start;
    }
    .testimonial-detail-image {
        max-height: 300px;
    }
} 