﻿/* ========================================
   zamana Elementor Widget Styles
   ======================================== */

/* Container */
.zamana-elementor-booking {
    font-family: 'IRANSans', 'Tahoma', sans-serif;
    direction: rtl;
    text-align: right;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

/* Title & Description */
.zamana-booking-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.zamana-booking-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

/* Form Layout */
.zamana-booking-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.zamana-booking-layout {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
}

.zamana-booking-vertical .zamana-booking-layout {
    flex-direction: column;
}

.zamana-booking-vertical .zamana-booking-column {
    max-width: 100%;
    width: 100%;
}

.zamana-booking-horizontal .zamana-booking-layout {
    flex-direction: row;
}

.zamana-booking-column {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.zamana-booking-calendar-column {
    max-width: 100%;
}

.zamana-booking-info-column {
    max-width: 100%;
}

.zamana-booking-horizontal .zamana-booking-calendar-column,
.zamana-booking-horizontal .zamana-booking-info-column {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
}

/* Form Fields */
.zamana-booking-field {
    margin-bottom: 15px;
}

#zamana-time-slots-container {
    margin-bottom: 0 !important;
}

#zamana-time-slots-container .zamana-booking-label {
    margin-bottom: 8px;
}

#zamana-time-slots-container .zamana-time-slots-grid {
    margin-bottom: 0 !important;
}

.zamana-booking-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.zamana-booking-label .required {
    color: #ef4444;
    margin-right: 3px;
}

.zamana-booking-input,
.zamana-booking-select,
.zamana-booking-textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'IRANSans', 'Tahoma', sans-serif;
    box-sizing: border-box;
}

.zamana-booking-input:focus,
.zamana-booking-select:focus,
.zamana-booking-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.zamana-booking-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Calendar Styles */
.zamana-elementor-calendar {
    background: #fff;
    border: 1px solid #e5e7eb;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    /* border-radius and overflow will be controlled by Elementor */
    /* margin-top and margin-bottom will be controlled by Elementor */
}

.zamana-calendar-body {
    overflow-x: auto;
    overflow-y: hidden;
}

.zamana-calendar-body::-webkit-scrollbar {
    height: 6px;
}

.zamana-calendar-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.zamana-calendar-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.zamana-calendar-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.zamana-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    /* padding will be controlled by Elementor */
}

.zamana-calendar-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.zamana-calendar-nav button {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
    padding: 3px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.zamana-calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.zamana-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f9fafb;
    font-weight: 600;
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    min-width: min-content;
    /* gap and padding will be controlled by Elementor */
}

.zamana-calendar-weekdays.hidden {
    display: none;
}

.zamana-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    min-width: min-content;
    /* gap and padding will be controlled by Elementor */
}

.zamana-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 36px;
    max-height: 45px;
}

.zamana-calendar-day:not(.disabled):not(.empty):hover {
    transform: scale(1.05);
}

.zamana-calendar-day.disabled {
    cursor: not-allowed;
    opacity: 0.4;
    pointer-events: none;
}

.zamana-calendar-day.empty {
    cursor: default;
    pointer-events: none;
    opacity: 0;
}

.zamana-calendar-day.today {
    font-weight: 700;
    position: relative;
}

.zamana-calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

.zamana-calendar-day.selected {
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Time Slots */
.zamana-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 8px;
}

/* No Slots Message */
.zamana-no-slots-message {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 15px 20px;
    text-align: center;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    grid-column: 1 / -1 !important;
}

.zamana-no-slots-message p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.zamana-no-slots-message.zamana-error-message {
    background-color: #ffebee;
    border-color: #f44336;
}

.zamana-no-slots-message.zamana-error-message p {
    color: #c62828;
}

#zamana-time-slots-container {
    width: 100%;
}

#zamana-time-slots {
    width: 100%;
}

.zamana-time-slot {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    /* padding will be controlled by Elementor */
}

.zamana-time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.zamana-time-slot.selected {
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.zamana-time-slot.disabled {
    cursor: not-allowed;
    opacity: 0.4;
    pointer-events: none;
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    text-decoration: line-through;
    position: relative;
}

.zamana-time-slot.disabled::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #ef4444;
    opacity: 0.5;
}

/* Capacity Display */
.zamana-slot-time {
    display: inline-block;
    margin-left: 5px;
}

.zamana-slot-capacity {
    display: inline-block;
    font-size: 11px;
    opacity: 0.8;
    font-weight: normal;
}

.zamana-slot-capacity.zamana-slot-almost-full {
    color: #f59e0b;
    font-weight: 600;
    opacity: 1;
}

/* Submit Button */
.zamana-booking-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'IRANSans', 'Tahoma', sans-serif;
}

.zamana-booking-submit:hover {
    transform: translateY(-2px);
}

.zamana-booking-submit:active {
    transform: translateY(0);
}

.zamana-booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.zamana-booking-submit.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.zamana-booking-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: zamana-spin 0.8s linear infinite;
}

@keyframes zamana-spin {
    to { transform: rotate(360deg); }
}

/* Messages */
.zamana-booking-messages {
    margin-top: 20px;
}

.zamana-booking-message {
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
    animation: zamana-slide-in 0.3s ease;
    /* padding will be controlled by Elementor */
}

@keyframes zamana-slide-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zamana-booking-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.zamana-booking-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.zamana-booking-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Loading State */
.zamana-booking-loading {
    position: relative;
    pointer-events: none;
}

.zamana-booking-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: inherit;
}

.zamana-booking-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    border: 4px solid #e5e7eb;
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: zamana-spin 0.8s linear infinite;
    z-index: 11;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zamana-booking-horizontal .zamana-booking-layout {
        flex-direction: column;
    }
    
    .zamana-booking-calendar-column,
    .zamana-booking-info-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .zamana-elementor-booking {
        max-width: 100%;
    }
    
    .zamana-booking-horizontal .zamana-booking-layout {
        flex-direction: column;
    }
    
    .zamana-booking-column {
        min-width: 100%;
    }
    
    .zamana-booking-title {
        font-size: 20px;
    }
    
    .zamana-booking-description {
        font-size: 13px;
    }
    
    .zamana-elementor-calendar {
        max-width: 100%;
    }
    
    .zamana-time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        max-width: 100%;
    }
    
    .zamana-calendar-day {
        font-size: 11px;
        min-height: 32px;
    }
    
    .zamana-calendar-header {
        font-size: 13px;
    }
    
    .zamana-calendar-weekdays {
        font-size: 10px;
    }
    
    .zamana-booking-layout {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .zamana-booking-title {
        font-size: 18px;
    }
    
    .zamana-elementor-calendar {
        max-width: 100%;
    }
    
    .zamana-time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .zamana-time-slot {
        font-size: 12px;
    }
    
    .zamana-calendar-header {
        font-size: 12px;
    }
    
    .zamana-calendar-day {
        min-height: 28px;
        font-size: 10px;
    }
}

/* Elementor Editor Specific */
.elementor-editor-active .zamana-elementor-booking {
    min-height: 400px;
}

/* Animations for better UX */
.zamana-booking-field {
    animation: zamana-fade-in 0.3s ease;
}

@keyframes zamana-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Info Display */
.zamana-service-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f4f6;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 13px;
    /* padding will be controlled by Elementor */
}

.zamana-service-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.zamana-service-info-item strong {
    font-weight: 600;
    color: #374151;
}

/* Tooltip */
.zamana-tooltip {
    position: relative;
    cursor: help;
}

.zamana-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
    /* padding will be controlled by Elementor */
}

.zamana-tooltip:hover::before {
    opacity: 1;
}

/* Custom Scrollbar for Time Slots */
.zamana-time-slots-grid::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.zamana-time-slots-grid::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.zamana-time-slots-grid::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 3px;
}

.zamana-time-slots-grid::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* ——— نظرات و امتیاز پرسنل ——— */
.zamana-staff-review-form {
    display: flex;
    flex-direction: column;
}

.zamana-staff-review-form-wrap .zamana-form-group {
    margin-bottom: 16px;
}

.zamana-review-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.zamana-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.zamana-star-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: #d1d5db;
    padding: 4px;
    transition: color 0.15s ease, transform 0.1s ease;
}

.zamana-star-btn:hover,
.zamana-star-btn:focus {
    color: #f59e0b;
    outline: none;
}

.zamana-star-btn.active {
    color: #f59e0b;
}

.zamana-review-textarea,
.zamana-review-input,
.zamana-review-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
}

.zamana-review-form-message {
    margin: 12px 0;
    min-height: 1.2em;
    font-size: 14px;
}

.zamana-review-form-message.success {
    color: #059669;
}

.zamana-review-form-message.error {
    color: #dc2626;
}

.zamana-review-form-header {
    margin-bottom: 20px;
}

.zamana-review-form-heading-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.zamana-review-form-subtitle {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.88;
    text-align: center;
}

.zamana-review-label-has-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zamana-review-label-has-bullet::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #70c1e3;
    flex-shrink: 0;
}

.zamana-review-form-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .zamana-review-form-top-grid--has-service {
        grid-template-columns: 1fr 1fr;
    }
}

.zamana-review-rating-hint {
    margin: 8px 0 0;
    font-size: 13px;
    opacity: 0.72;
}

.zamana-review-textarea-shell {
    position: relative;
}

.zamana-review-textarea-shell .zamana-review-textarea {
    padding-bottom: 36px;
    min-height: 120px;
}

.zamana-review-textarea-decor-icon {
    position: absolute;
    bottom: 10px;
    inset-inline-start: 12px;
    opacity: 0.35;
    pointer-events: none;
    font-size: 18px;
    line-height: 1;
}

.zamana-review-char-counter {
    margin-top: 8px;
    font-size: 12px;
    text-align: end;
    opacity: 0.65;
}

.zamana-review-moderation-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eef8fc;
    border: 1px solid #dbeefc;
    margin: 16px 0 10px;
    font-size: 14px;
    line-height: 1.55;
}

.zamana-review-moderation-icon {
    flex-shrink: 0;
    display: inline-flex;
}

.zamana-review-form-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.zamana-review-submit-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zamana-review-submit-icon {
    display: inline-flex;
}

.zamana-review-submit {
    margin-top: 0;
}

.zamana-review-cancel {
    cursor: pointer;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
}

.zamana-review-cancel:hover {
    border-color: #d1d5db;
}

.zamana-reviews-display .zamana-reviews-summary {
    margin-bottom: 24px;
}

.zamana-summary-score {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zamana-stars-summary,
.zamana-stars-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.zamana-review-stars .star,
.zamana-summary-stars .star {
    color: #e5e7eb;
    font-size: 18px;
}

.zamana-review-stars .star.filled,
.zamana-summary-stars .star.filled {
    color: #f59e0b;
}

.zamana-summary-average {
    font-size: 22px;
    font-weight: 700;
}

.zamana-summary-meta {
    margin: 8px 0 0;
    opacity: 0.85;
}

/* خلاصهٔ Hero — چیدمان شبیه داشبورد نظرات مشتری */
.zamana-reviews-summary--hero .zamana-summary-title--hero-above {
    margin-bottom: 12px;
}

.zamana-summary-hero-inner {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    background: #fff;
}

.zamana-summary-hero-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

@media (max-width: 991px) {
    .zamana-summary-hero-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.zamana-summary-hero-inner--no-breakdown .zamana-summary-hero-cols {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.zamana-summary-hero-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.zamana-summary-hero-average-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #70c1e3;
}

.zamana-summary-hero-stars .zamana-summary-stars .star.filled {
    color: #70c1e3;
}

.zamana-rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zamana-rating-bar-row {
    display: grid;
    grid-template-columns: auto minmax(40px, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.zamana-rating-bar-track {
    display: block;
    height: 8px;
    background: #eef2f7;
    border-radius: 999px;
    overflow: hidden;
}

.zamana-rating-bar-fill {
    display: block;
    height: 100%;
    background: #70c1e3;
    border-radius: inherit;
    max-width: 100%;
}

.zamana-rating-bar-label {
    font-size: 13px;
    white-space: nowrap;
}

.zamana-rating-bar-count {
    font-size: 13px;
    opacity: 0.75;
}

.zamana-summary-hero-col-cta {
    text-align: center;
}

.zamana-summary-hero-cta-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
}

.zamana-summary-hero-cta-text {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 14px;
    line-height: 1.6;
}

.zamana-summary-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #70c1e3;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.zamana-summary-hero-cta-btn:hover {
    opacity: 0.92;
    color: #fff;
}

.zamana-summary-hero-cta-btn-inner {
    display: inline-flex;
    align-items: center;
    gap: inherit;
}

.zamana-summary-hero-cta-btn--disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* لیست — حالت کارت */
.zamana-review-item--card {
    border-bottom: none;
    padding: 16px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
}

.zamana-review-card-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.zamana-review-card-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.zamana-review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #dbeefc;
    color: #2d7aa8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
}

.zamana-review-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.zamana-review-card-menu {
    margin-inline-start: auto;
    flex-shrink: 0;
    border: none;
    background: transparent;
    cursor: default;
    opacity: 0.45;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
}

.zamana-review-date-row {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.65;
}

.zamana-review-item--card .zamana-review-comment {
    margin-top: 12px;
}

.zamana-reviews-more.zamana-booking-submit {
    border-radius: 999px;
}

.zamana-reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zamana-review-item {
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.zamana-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.zamana-review-service {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    padding: 2px 10px;
    background: #f3f4f6;
    border-radius: 999px;
}

.zamana-review-comment {
    margin-top: 10px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.zamana-review-date {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.65;
}

.zamana-reviews-more {
    margin-top: 16px;
    width: 100%;
}

.zamana-reviews-empty {
    opacity: 0.8;
    margin: 0 0 12px;
}

.zamana-review-no-appt {
    padding: 16px;
    border-radius: 10px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    font-size: 15px;
    line-height: 1.6;
}

.zamana-review-no-appt-hint {
    margin: 8px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.zamana-review-admin-reply {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8fafc;
    border-left: 3px solid #6366f1;
    font-size: 0.92em;
    line-height: 1.55;
}

.zamana-review-reply-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.82em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.85;
    margin-bottom: 4px;
}

.zamana-review-reply-meta {
    font-size: 0.85em;
    opacity: 0.85;
    margin-bottom: 6px;
}

.zamana-review-reply-at {
    margin-inline-start: 8px;
    opacity: 0.75;
}

.zamana-review-reply-body {
    white-space: pre-wrap;
}

.zamana-review-reply-editor {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fafafa;
    border: 1px dashed #e5e7eb;
    font-size: 0.88em;
}

.zamana-review-reply-editor-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.zamana-review-reply-editor .zamana-review-reply-input {
    margin-bottom: 8px;
    font-size: 14px;
}

.zamana-review-reply-save {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    font-weight: 600;
    color: #2563eb;
    text-decoration: underline;
}

.zamana-review-reply-feedback {
    display: inline-block;
    margin-inline-start: 10px;
    font-size: 0.85em;
}

.zamana-review-reply-feedback.success {
    color: #059669;
}

.zamana-review-reply-feedback.error {
    color: #dc2626;
}
