.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
    text-align: right;
    font-family: 'Vazirmatn', sans-serif;
}

/* Blazor Error UI - RTL Version */
#blazor-error-ui {
    color-scheme: dark;
    background: var(--darker-bg);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(108, 92, 231, 0.3);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: var(--text-primary);
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    border-top: 2px solid var(--primary-purple);
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    color: var(--secondary-pink);
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

#blazor-error-ui .dismiss:hover {
    color: var(--accent-yellow);
}

#blazor-error-ui .reload {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#blazor-error-ui .reload:hover {
    color: var(--accent-cyan);
}

.blazor-error-boundary {
    background: linear-gradient(135deg, var(--darker-bg), var(--card-bg));
    padding: 1rem 1rem 1rem 3.7rem;
    color: var(--text-primary);
    border-radius: 10px;
    border: 1px solid var(--primary-purple);
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

.blazor-error-boundary::after {
    content: "????? ?? ???? ???.";
}

/* Enhanced Loading Animation for RTL */
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: rgba(108, 92, 231, 0.3);
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: var(--primary-purple);
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
    filter: drop-shadow(0 0 10px var(--primary-purple));
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    font-family: 'Vazirmatn', sans-serif;
    color: var(--text-primary);
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "?? ??? ???????...");
}

/* Code Highlighting */
code {
    color: var(--secondary-pink);
    background: rgba(26, 26, 46, 0.8);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    direction: ltr;
    display: inline-block;
}

/* Form Controls RTL Enhancement */
.form-floating > .form-control-plaintext::placeholder, 
.form-floating > .form-control::placeholder {
    color: var(--text-secondary);
    text-align: right;
    font-family: 'Vazirmatn', sans-serif;
}

.form-floating > .form-control-plaintext:focus::placeholder, 
.form-floating > .form-control:focus::placeholder {
    text-align: right;
}

/* Input and Select Enhancements */
input, select, textarea {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

input[type="email"], input[type="url"] {
    direction: ltr;
    text-align: left;
}

/* Responsive Text Alignment */
@media (max-width: 768px) {
    .text-center {
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #8a2be2;
        --secondary-pink: #ff1493;
        --accent-cyan: #00ffff;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn-gaming, .gaming-card {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Selection Colors */
::selection {
    background: var(--primary-purple);
    color: white;
}

::-moz-selection {
    background: var(--primary-purple);
    color: white;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3),
                0 0 40px rgba(108, 92, 231, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.show .modal-container {
    transform: scale(1);
    opacity: 1;
}

.modal-container.small {
    width: 90%;
    max-width: 400px;
}

.modal-container.medium {
    width: 90%;
    max-width: 600px;
}

.modal-container.large {
    width: 90%;
    max-width: 800px;
}

.modal-container.extralarge {
    width: 90%;
    max-width: 1000px;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), transparent);
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.modal-close-btn:hover {
    color: var(--secondary-pink);
    background: rgba(237, 20, 91, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    color: var(--text-primary);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-pink);
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    background: linear-gradient(135deg, transparent, rgba(108, 92, 231, 0.05));
}

.btn-modal {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Vazirmatn', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-modal:hover::before {
    transform: translateX(100%);
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.5);
}

.btn-confirm:active {
    transform: translateY(0);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-cancel:active {
    transform: translateY(0);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn-modal {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for modal content */
@keyframes modalContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-overlay.show .modal-body > * {
    animation: modalContentFadeIn 0.5s ease 0.1s both;
}

/* ========================================
   Data Grid System with Expandable Rows
   ======================================== */

/* Grid Container */
.data-grid {
    width: 100%;
    overflow-x: auto;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(16, 16, 36, 0.6));
    border: 1px solid rgba(108, 92, 231, 0.2);
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

/* Grid Table */
.data-grid-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

/* Grid Header */
.data-grid-header {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(237, 20, 91, 0.2));
    border-bottom: 2px solid rgba(108, 92, 231, 0.4);
}

.data-grid-header th {
    padding: 1rem 1.25rem;
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
}

.data-grid-header th::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-grid-header th:hover::after {
    opacity: 1;
}

/* Grid Body */
.data-grid-body tr {
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.data-grid-body tr:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(237, 20, 91, 0.05));
    transform: translateX(-5px);
}

.data-grid-body tr.expanded {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(237, 20, 91, 0.1));
}

.data-grid-body td {
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    vertical-align: middle;
}

/* Grid Cell Types */
.grid-cell-primary {
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 1rem;
}

.grid-cell-secondary {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.grid-cell-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.grid-cell-badge.male {
    background: rgba(0, 191, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.grid-cell-badge.female {
    background: rgba(237, 20, 91, 0.2);
    color: var(--secondary-pink);
    border: 1px solid rgba(237, 20, 91, 0.3);
}

.grid-cell-badge.session-count {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-purple);
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.grid-cell-badge.free-session {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.grid-cell-badge.loyal-customer {
    background: rgba(255, 215, 0, 0.2);
    color: gold;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Expand Toggle Button */
.grid-expand-toggle {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(237, 20, 91, 0.2));
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.grid-expand-toggle:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    border-color: var(--primary-purple);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.grid-expand-toggle i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.grid-expand-toggle.expanded i {
    transform: rotate(180deg);
}

/* Expandable Row Details */
.grid-details-row {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(16, 16, 36, 0.8));
    border-top: 1px solid rgba(108, 92, 231, 0.3);
}

.grid-details-cell {
    padding: 0 !important;
}

.grid-details-content {
    padding: 1.5rem 2rem;
    animation: gridDetailsSlideDown 0.4s ease;
}

@keyframes gridDetailsSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-details-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(108, 92, 231, 0.3);
}

.grid-details-header i {
    color: var(--primary-purple);
    font-size: 1.25rem;
}

.grid-details-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.grid-details-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.grid-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
}

.grid-detail-item:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.grid-detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grid-detail-label i {
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.grid-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
}

.grid-detail-value.highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

/* Grid Action Buttons */
.grid-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.grid-action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Vazirmatn', sans-serif;
    white-space: nowrap;
}

.grid-action-btn i {
    font-size: 0.9rem;
}

.grid-action-btn.edit {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(0, 255, 255, 0.2));
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.grid-action-btn.edit:hover {
    background: linear-gradient(135deg, var(--accent-cyan), #00d4ff);
    color: var(--darker-bg);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.grid-action-btn.delete {
    background: linear-gradient(135deg, rgba(237, 20, 91, 0.2), rgba(255, 0, 100, 0.2));
    color: var(--secondary-pink);
    border: 1px solid rgba(237, 20, 91, 0.3);
}

.grid-action-btn.delete:hover {
    background: linear-gradient(135deg, var(--secondary-pink), #ff0064);
    color: white;
    border-color: var(--secondary-pink);
    box-shadow: 0 0 15px rgba(237, 20, 91, 0.5);
}

/* Grid Empty State */
.grid-empty-state {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.grid-empty-state i {
    font-size: 3rem;
    color: rgba(108, 92, 231, 0.3);
    margin-bottom: 1rem;
}

.grid-empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .data-grid-header th,
    .data-grid-body td {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .grid-details-body {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .data-grid {
        border-radius: 10px;
    }
    
    .data-grid-header th,
    .data-grid-body td {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .grid-details-content {
        padding: 1.25rem 1rem;
    }
    
    .grid-details-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .grid-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .grid-cell-primary {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .data-grid-table {
        font-size: 0.8rem;
    }
    
    .grid-expand-toggle {
        width: 32px;
        height: 32px;
    }
    
    .grid-action-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Grid Scroll Styling */
.data-grid::-webkit-scrollbar {
    height: 8px;
}

.data-grid::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
}

.data-grid::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.data-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-pink);
}

/* ========================================
   PERSIAN DATEPICKER - COMPLETE REWRITE
   ======================================== */

/* Main Container */
.pdp-container {
    position: relative;
    width: 100%;
}

/* Input Field */
.pdp-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Vazirmatn', sans-serif;
}

.pdp-input:hover {
    border-color: #6c5ce7;
    background-color: rgba(26, 26, 46, 0.8);
}

.pdp-input i {
    color: #6c5ce7;
}

/* Overlay */
.pdp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Popup */
.pdp-popup {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #1a1a2e;
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 15px;
    padding: 20px;
    z-index: 1000;
    min-width: 320px;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Header */
.pdp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.pdp-nav-btn {
    background-color: rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    color: #6c5ce7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-nav-btn:hover {
    background-color: #6c5ce7;
    color: #ffffff;
}

.pdp-month-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* Calendar */
.pdp-calendar {
    margin-bottom: 20px;
}

/* Weekdays */
.pdp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.pdp-weekday {
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
}

/* Days Grid */
.pdp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

/* Day Button - SUPER SIMPLE */
.pdp-day {
    background-color: #2a2a3e;
    border: 1px solid #3a3a4e;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    box-sizing: border-box;
    display: block;
    position: relative;
}

.pdp-day-number {
    display: block;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    font-family: 'Vazirmatn', sans-serif;
}

/* Current Month */
.pdp-day.pdp-day-current {
    background-color: rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.3);
}

.pdp-day.pdp-day-current:hover:not(:disabled) {
    background-color: #6c5ce7;
}

.pdp-day.pdp-day-current:hover:not(:disabled) .pdp-day-number {
    color: #ffffff;
}

/* Other Month */
.pdp-day.pdp-day-other {
    background-color: rgba(26, 26, 46, 0.3);
    border-color: rgba(58, 58, 78, 0.3);
}

.pdp-day.pdp-day-other .pdp-day-number {
    color: #666666;
}

/* Today */
.pdp-day.pdp-day-today {
    background-color: rgba(0, 206, 201, 0.25);
    border-color: #00cec9;
}

.pdp-day.pdp-day-today .pdp-day-number {
    color: #00ffff;
    font-weight: 600;
}

/* Selected */
.pdp-day.pdp-day-selected {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.pdp-day.pdp-day-selected .pdp-day-number {
    color: #ffffff;
    font-weight: 600;
}

/* Disabled */
.pdp-day:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

/* Time Picker */
.pdp-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.pdp-time-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pdp-time-group label {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 500;
}

.pdp-time-input {
    width: 60px;
    padding: 8px;
    background-color: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
}

.pdp-time-input:focus {
    outline: none;
    border-color: #6c5ce7;
}

.pdp-time-sep {
    font-size: 24px;
    font-weight: bold;
    color: #6c5ce7;
    padding-top: 24px;
}

/* Actions */
.pdp-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.pdp-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
}

.pdp-btn-cancel {
    background-color: rgba(237, 20, 91, 0.2);
    border: 1px solid rgba(237, 20, 91, 0.3);
    color: #fd79a8;
}

.pdp-btn-cancel:hover {
    background-color: #fd79a8;
    color: #ffffff;
}

.pdp-btn-confirm {
    background-color: #6c5ce7;
    border: 1px solid #6c5ce7;
    color: #ffffff;
}

.pdp-btn-confirm:hover {
    background-color: #8a2be2;
}