/**
 * استایل‌های سمت کاربر
 */
#photography-booking-modal {
    font-family: "AzarMehr";
}

#photography-booking-modal h3 {
    font-family: "peyda";
    font-weight: 800;
}

/* استایل‌های مودال */
.photography-booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    direction: rtl;
    /* حل مشکل وسط‌چینی */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.photography-booking-modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
    margin: 0;
}

@media (max-width: 600px) {
    .photography-booking-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 30px;
    }

    .modal-content {
        max-height: 90vh;
        width: 100%;
        max-width: none;
        border-radius: 12px 12px 0 0;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #888;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

/* استایل‌های نشانگر مراحل */
.modal-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    border-radius: 8px 8px 0 0;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
    cursor: pointer;
}

.step-indicator.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.step-indicator.completed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    font-size: 0; /* حذف متن/عدد */
}

.step-indicator.completed::after {
    content: "✓";
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* انیمیشن pulse برای مرحله فعال */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    }
}

/* انیمیشن ورود برای مرحله جدید */
@keyframes stepIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.step-indicator.active {
    animation: stepIn 0.5s ease, pulse 2s 0.5s infinite;
}

.step-line {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(90deg, #dee2e6 0%, #adb5bd 50%, #dee2e6 100%);
    margin: 0 15px;
    max-width: 80px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.step-line.completed {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.step-line.completed::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* هاور افکت برای مراحل تکمیل شده */
.step-indicator.completed:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.step-indicator:not(.active):not(.completed):hover {
    background-color: #ced4da;
    transform: scale(1.05);
}

/* استایل‌های محتوای مراحل */
.step-container {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    text-align: center;
}

/* استایل‌های فرم */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4caf50;
    outline: none;
}

/* حل مشکل selectbox در موبایل */
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px; /* جلوگیری از zoom در iOS */
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: left 8px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-left: 35px;
}

@media (max-width: 768px) {
    .form-group select {
        font-size: 16px !important; /* مهم برای جلوگیری از zoom */
        min-height: 48px;
        border: 2px solid #ddd;
        padding: 14px 16px 14px 40px;
    }

    .form-group select option {
        padding: 12px 16px;
        font-size: 16px;
        background-color: #fff;
        color: #333;
    }

    /* حل مشکل viewport */
    .form-group {
        position: relative;
        z-index: 1;
    }

    .form-group:focus-within {
        z-index: 100;
    }
}

/* استایل‌های دکمه‌ها - تراز از چپ */
.step-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.prev-step,
.next-step,
.submit-booking {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.prev-step {
    background-color: #6c757d;
    color: white;
    order: 1;
}

.prev-step:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.next-step,
.submit-booking {
    background-color: #4caf50;
    color: white;
    order: 2;
}

.next-step:hover,
.submit-booking:hover {
    background-color: #45a049;
    transform: translateY(-1px);
}

.submit-booking {
    width: 100%;
    min-width: 150px;
    padding: 10px 24px;
    font-size: 16px;
}

/* پاسخگویی */
@media (max-width: 600px) {
    .step-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .prev-step,
    .next-step {
        width: 100%;
        min-width: auto;
    }
}

/* استایل‌های پیش‌نمایش ست - حالت جدید */
.set-preview {
    margin-top: 15px;
}

.set-gallery-preview {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.set-thumbnails-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.set-thumbnail-item {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.set-thumbnail-item:hover {
    border-color: #4caf50;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.set-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* افکت هاور برای تصاویر کوچک */
.set-thumbnail-item::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 175, 80, 0.9);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.set-thumbnail-item:hover::after {
    opacity: 1;
}

/* استایل مودال تصاویر ست */
.set-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.set-image-modal.active {
    opacity: 1;
    visibility: visible;
}

.set-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.set-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    max-width: 90vw;
    max-height: 90vh;
    transition: transform 0.3s ease;
}

.set-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.set-image-modal.active {
    opacity: 1;
    visibility: visible;
}

.set-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.set-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80vw;
    height: 80vh;
    max-width: 1000px;
    max-height: 700px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.set-image-modal.active .set-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.set-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.set-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

#set-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* حذف استایل‌های قدیمی */
.set-gallery-container,
.set-main-image,
.set-gallery-thumbnails {
    display: none !important;
}

/* پاسخگویی برای موبایل */
@media (max-width: 600px) {
    .set-thumbnails-grid {
        justify-content: center;
    }

    .set-thumbnail-item {
        width: 50px;
        height: 50px;
    }

    .set-modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .set-modal-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

/* استایل‌های انتخاب زمان */
.time-slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot.available {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.time-slot.booked {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
    cursor: not-allowed;
    opacity: 0.7;
}

.time-slot.selected {
    background-color: #4caf50;
    border: 1px solid #388e3c;
    color: white;
}

.time-slot input[type="radio"] {
    margin-right: 8px;
}

.session-duration {
    margin-top: 10px;
    font-weight: bold;
    color: #4caf50;
}

/* استایل‌های خلاصه رزرو - بهبود یافته */
.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-summary h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 10px;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.summary-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-item .label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.summary-item .value {
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.summary-item.total {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.summary-item.total .label,
.summary-item.total .value {
    color: white;
}

/* آیکون‌ها برای آیتم‌های خلاصه */
.summary-item .label::before {
    margin-left: 8px;
    opacity: 0.7;
}

.summary-item:nth-child(1) .label::before {
    content: "👤";
}

.summary-item:nth-child(2) .label::before {
    content: "📱";
}

.summary-item:nth-child(3) .label::before {
    content: "📷";
}

.summary-item:nth-child(4) .label::before {
    content: "📍";
}

.summary-item:nth-child(5) .label::before {
    content: "🎨";
}

.summary-item:nth-child(6) .label::before {
    content: "📅";
}

.summary-item:nth-child(7) .label::before {
    content: "🖼️";
}

.summary-item:nth-child(8) .label::before {
    content: "⏰";
}

.summary-item.total .label::before {
    content: "💰";
}

/* پاسخگویی موبایل */
@media (max-width: 600px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .summary-item {
        padding: 10px 12px;
    }

    .summary-item.total {
        grid-column: 1;
    }
}

/* استایل‌های بخش پرداخت */
.payment-section {
    background-color: #e8f5e9;
    padding: 12px;
    border-radius: 4px;
}

.payment-section h3 {
    margin-top: 0;
    color: #2e7d32;
    font-size: 18px;
}

.deposit-amount {
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-note {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

/* استایل‌های دکمه رزرو */
.photography-booking-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.photography-booking-button:hover {
    background-color: #45a049;
}

/* استایل‌های صفحه پرداخت */
.payment-success,
.payment-error,
.payment-cancel {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.payment-success {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.payment-error {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}

.payment-cancel {
    background-color: #fff3e0;
    border: 1px solid #ffe0b2;
}

.payment-success h3,
.payment-error h3,
.payment-cancel h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.booking-details {
    text-align: right;
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.return-home {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.return-home:hover {
    background-color: #45a049;
}

/* استایل‌های گالری تصاویر ست */
.set-gallery-container {
    margin-top: 15px;
}

.set-main-image {
    text-align: center;
    margin-bottom: 10px;
}

.set-main-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.set-gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.set-thumbnail {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
}

.set-thumbnail:hover {
    border-color: #4caf50;
    transform: scale(1.05);
}

.set-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*------*/
/* استایل فیلد تاریخ با آیکون */
.date-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-input-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.date-input-wrapper input:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.date-input-wrapper input:hover {
    border-color: #4caf50;
}

.date-input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: color 0.3s ease;
}

.date-input-wrapper input:focus + .date-input-icon,
.date-input-wrapper input:hover + .date-input-icon {
    color: #4caf50;
}

.date-input-wrapper input::placeholder {
    color: #999;
    font-style: italic;
}

/* انیمیشن برای فیلد تاریخ */
.date-input-wrapper {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* استایل بهتر برای تقویم */
.jdp-container {
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

/* بهبود ظاهر دکمه‌های تقویم */
.jdp-container .jdp-day:not(.disabled-day):hover {
    background: #4caf50 !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.jdp-container .jdp-day.selected {
    background-color: #4caf50 !important;
    color: white !important;
}

/*-----------*/
/* استایل‌های فرم دو ستونه */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
    margin-bottom: 0 !important;
}

/* بهبود استایل فیلد تعداد تصاویر */
.form-col input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-col input[type="number"]:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* استایل مدت جلسه */
.session-duration {
    margin-top: 8px;
    font-weight: 600;
    color: #4caf50;
    font-size: 13px;
    padding: 5px 0;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

/* انیمیشن برای تغییر مدت جلسه */
.session-duration.updating {
    transform: scale(1.05);
    background: rgba(76, 175, 80, 0.2);
}

/* بهبود استایل لیبل‌ها */
.form-row .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* پاسخگویی برای موبایل */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-col {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 0;
    }

    .date-input-wrapper input {
        padding: 12px 40px 12px 12px;
        font-size: 16px; /* جلوگیری از زوم در iOS */
    }

    .form-col input[type="number"] {
        padding: 12px;
        font-size: 16px; /* جلوگیری از زوم در iOS */
    }
}

/*------*/
/* استایل برای روزهای جمعه غیرفعال */
.jdp-container .jdp-day.friday-disabled {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    text-decoration: line-through !important;
}

.jdp-container .jdp-day.friday-disabled:hover {
    background-color: #f8d7da !important;
    transform: none !important;
    color: #721c24 !important;
}

/* بهبود نمایش روزهای تعطیل */
.jdp-container .jdp-day.holly-day {
    background-color: #fff3cd !important;
    color: #856404 !important;
    border: 1px solid #ffeaa7 !important;
}

/* اضافه کردن آیکون برای روزهای جمعه */
.jdp-container .jdp-day.friday-disabled::after {
    content: "🚫";
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 8px;
    opacity: 0.7;
}

/* پاسخگویی */
@media (max-width: 600px) {
    .modal-content {
        margin: 20px auto;
        width: 95%;
    }

    .time-slots-container {
        flex-direction: column;
        gap: 5px;
    }

    .summary-item {
        /*flex-direction: column;*/
        align-items: flex-start;
    }

    .step-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .prev-step,
    .next-step {
        width: 100%;
    }
}

/* ---- */
/* استایل برای تاریخ‌های گذشته غیرفعال */
.jdp-container .jdp-day.past-disabled {
    background-color: #f5f5f5 !important;
    color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    text-decoration: line-through !important;
}

.jdp-container .jdp-day.past-disabled:hover {
    background-color: #f5f5f5 !important;
    transform: none !important;
    color: #ccc !important;
}

/*-------------------------*/
/*-------------------------*/

/* استایل جزئیات جلسه */
.session-breakdown {
    margin-top: 5px;
    padding: 8px 12px;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.session-breakdown small {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    display: block;
    text-align: center;
}

/* انیمیشن برای تغییر */
.session-duration.updating,
.session-breakdown {
    transition: all 0.3s ease;
}

.session-breakdown {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding: 0 12px;
    }
    to {
        opacity: 1;
        max-height: 50px;
        padding: 8px 12px;
    }
}