.lms-student-review-wrapper-21c09402 {
    font-family: inherit;
}

.lms-header-21c09402 {
    text-align: center;
    margin-bottom: 40px;
}

.lms-reviews-grid-21c09402 {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

/* Card basic styling */
.lms-review-card-21c09402 {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lms-review-card-21c09402:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.lms-card-header-21c09402 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.lms-avatar-21c09402 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lms-avatar-21c09402 img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.lms-initial-avatar-21c09402 {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    text-transform: uppercase;
}

.lms-meta-21c09402 h4 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lms-verified-21c09402 {
    color: #4CAF50;
    font-size: 14px;
}

.lms-meta-21c09402 span {
    font-size: 13px;
    color: #777;
}

.lms-rating-21c09402 {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 18px;
}

.lms-content-21c09402 p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Pagination System UI */
.lms-pagination-wrapper-21c09402 {
    margin-bottom: 50px;
}

.lms-pagination-numbers-21c09402 {
    display: flex;
    align-items: center;
    justify-content: inherit;
    flex-wrap: wrap;
    gap: 10px;
}

.lms-page-number-21c09402 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    color: #334155;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lms-page-number-21c09402:hover {
    background: #cbd5e1;
    color: #0f172a;
}

.lms-page-number-21c09402.active {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.lms-load-more-btn-21c09402 {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lms-load-more-btn-21c09402:hover {
    background: #2563eb;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}


/* Animations */
.lms-anim-fade {
    opacity: 0;
    transition: opacity var(--anim-speed) ease;
}
.lms-anim-fade.lms-anim-active {
    opacity: 1;
}

.lms-anim-slide_up {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--anim-speed) ease;
}
.lms-anim-slide_up.lms-anim-active {
    opacity: 1;
    transform: translateY(0);
}

.lms-anim-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--anim-speed) ease;
}
.lms-anim-scale.lms-anim-active {
    opacity: 1;
    transform: scale(1);
}

/* Hide by default for pagination JS logic */
.lms-hidden-card-21c09402 {
    display: none !important;
}


/* Form Styles */
.lms-form-wrapper-21c09402 {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.lms-form-wrapper-21c09402 h3 {
    text-align: center;
    margin-bottom: 20px;
}

.lms-form-group-21c09402 {
    margin-bottom: 15px;
}

.lms-form-group-21c09402 label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.lms-form-group-21c09402 input,
.lms-form-group-21c09402 select,
.lms-form-group-21c09402 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lms-form-group-21c09402 input:focus,
.lms-form-group-21c09402 select:focus,
.lms-form-group-21c09402 textarea:focus {
    border-color: #333;
    outline: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Interactive Star Rating */
.lms-star-rating-input-21c09402 {
    display: flex;
    gap: 5px;
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lms-star-rating-input-21c09402 span.active,
.lms-star-rating-input-21c09402 span.hover {
    color: #FFC107;
}

.lms-btn-wrapper-21c09402 {
    margin-top: 20px;
}

.lms-submit-btn-21c09402 {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.lms-submit-btn-21c09402:hover {
    background: #555;
}

.lms-form-message-21c09402 {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}
.lms-form-message-21c09402.success {
    color: #4CAF50;
}
.lms-form-message-21c09402.error {
    color: #F44336;
}
