/* =============================================
   KIRALCORE × BEAUTY - Component Styles
   ============================================= */

/* Glass Card Premium */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(0, 245, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* Buttons Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1;
}

.btn i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #030712;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
}

.btn-success {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Status Badges Premium */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge i {
    width: 12px;
    height: 12px;
}

.badge-beklemede {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.badge-onaylandi {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.badge-iptal {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.badge-tamamlandi {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
}

.badge-yeni {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.badge-aktif {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.badge-pasif {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

/* Premium Filter Group */
.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0 1rem;
    height: 48px;
    color: var(--text-muted);
}

.filter-group i {
    width: 18px;
    height: 18px;
}

.filter-group select,
.filter-group input {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0;
    height: 100%;
    font-size: 0.875rem;
}

.filter-group select:focus,
.filter-group input:focus {
    box-shadow: none;
}

/* Toggle Switch */
.toggle {
    position: relative;
    width: 44px;
    height: 22px;
    background: #334155;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle.active {
    background: var(--brand-primary);
}

.toggle.active::after {
    transform: translateX(22px);
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* List Item */
.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    transition: background 0.3s ease;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.list-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-item-title {
    font-weight: 600;
}

.list-item-subtitle {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Avatar */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #00F5FF, #0066FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.avatar-lg {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6B7280;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.empty-state-text {
    font-size: 0.875rem;
}

/* Chart Container */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Tabs (horizontal navigation) */
.nav-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    padding-bottom: 0.5rem;
}

.nav-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: #6B7280;
    cursor: pointer;
    border-radius: 0.5rem 0.5rem 0 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-tab.active {
    color: #00F5FF;
    background: rgba(0, 245, 255, 0.1);
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #00F5FF, #0066FF);
}

/* Tab Content */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Search Input */
.search-input {
    position: relative;
}

.search-input input {
    padding-left: 2.5rem;
}

.search-input::before {
    content: '🔍';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

/* File Upload */
.file-upload {
    border: 2px dashed rgba(0, 245, 255, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #00F5FF;
    background: rgba(0, 245, 255, 0.05);
}

.file-upload input {
    display: none;
}

.file-upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: rgba(5, 10, 30, 0.98);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 245, 255, 0.1);
    color: #00F5FF;
}

/* Form Group */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.form-hint {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

/* Checkbox & Radio */
.checkbox,
.radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox input,
.radio input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

/* User Name Display */
.user-name {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Randevu Card (Uzman View) */
.randevu-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.randevu-info {
    flex: 1;
}

.randevu-info h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.randevu-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #9CA3AF;
}

.randevu-actions {
    display: flex;
    gap: 0.5rem;
}

/* Divider */
.divider {
    height: 1px;
    background: rgba(0, 245, 255, 0.1);
    margin: 1.5rem 0;
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

/* Margin utilities */
.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted {
    color: #6B7280;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* Uppercase text transformation for name/service inputs */
.text-uppercase {
    text-transform: uppercase;
}

/* Call Detail Styles */
.call-detail {
    padding: 0.5rem 0;
}

.call-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
}

.call-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.call-info-item .label {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.call-info-item .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-primary);
}

.call-summary {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.call-transcript {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #9CA3AF;
    white-space: pre-wrap;
}

/* Custom Audio Player */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 245, 255, 0.2);
    min-width: 240px;
}

.custom-audio-player audio {
    display: none;
}

.audio-play-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #030712;
    box-shadow: 0 2px 8px rgba(0, 245, 255, 0.3);
}

.audio-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.5);
}

.audio-play-btn svg {
    width: 14px;
    height: 14px;
}

/* Progress wrapper with fill */
.audio-progress-wrapper {
    flex: 1;
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    overflow: hidden;
}

.audio-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 3px;
    transition: width 0.1s linear;
    pointer-events: none;
}

.audio-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.audio-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.15s ease;
}

.audio-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
}

.audio-slider::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
    height: 100%;
}

.audio-slider::-moz-range-track {
    background: transparent;
    border: none;
    height: 100%;
}

.audio-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.audio-time {
    font-size: 0.7rem;
    color: #9CA3AF;
    min-width: 65px;
    text-align: right;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    letter-spacing: -0.5px;
}

/* =============================================
   AI INSIGHT CARDS
   ============================================= */

/* Clickable Stat Card */
.stat-card.clickable {
    cursor: pointer;
    position: relative;
}

.stat-card.clickable::after {
    content: '';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat-card.clickable:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

.stat-card.clickable:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.15);
}

/* AI Insight Card */
.ai-insight-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.03), rgba(0, 102, 255, 0.02));
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 1rem;
    overflow: hidden;
}

.ai-insight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.ai-insight-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
}

.ai-insight-title i {
    color: var(--brand-primary);
}

.ai-insight-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* AI Tabs */
.ai-tabs {
    display: flex;
    gap: 0;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 245, 255, 0.08);
}

.ai-tab {
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.ai-tab:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
}

.ai-tab.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

/* AI Tab Content */
.ai-tab-content {
    padding: 1.25rem 1.5rem;
}

.ai-tab-pane {
    display: none;
}

.ai-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AI Metrics Row */
.ai-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ai-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    font-size: 0.8rem;
}

.ai-metric i {
    color: var(--brand-primary);
    width: 14px;
    height: 14px;
}

.ai-metric-label {
    color: var(--text-muted);
}

.ai-metric-value {
    font-weight: 600;
    color: var(--text-main);
}

/* AI Recommendation */
.ai-recommendation {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.75rem;
    margin-top: 0.75rem;
}

.ai-recommendation-icon {
    color: #a78bfa;
    flex-shrink: 0;
}

.ai-recommendation-icon i {
    width: 18px;
    height: 18px;
}

.ai-recommendation-text {
    font-size: 0.875rem;
    color: #e0d4fc;
    line-height: 1.5;
}

/* AI Empty State */
.ai-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
}

.ai-empty i {
    width: 48px;
    height: 48px;
    color: rgba(0, 245, 255, 0.3);
    margin-bottom: 0.75rem;
}

.ai-empty p {
    font-size: 0.875rem;
}

/* AI Analysis Text (Weekly/Monthly) */
.ai-analysis-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    border-left: 3px solid var(--brand-primary);
}

/* Tab Button (Uzman Panel) */
.tab-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #9CA3AF;
    cursor: pointer;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
    color: var(--brand-primary);
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--brand-primary);
}

/* Opacity utilities */
.opacity-50 {
    opacity: 0.5;
}

/* Status Badges for Availability */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.status-warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* =============================================
   SCHEDULE PICKER - İleri Tarihli Arama
   ============================================= */

/* Schedule Option Container */
.schedule-option-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

/* Schedule Type Selector */
.schedule-type-selector {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 0.25rem;
    gap: 0.25rem;
}

.schedule-type-btn {
    flex: 1;
    padding: 0.625rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-type-btn i {
    width: 16px;
    height: 16px;
}

.schedule-type-btn:hover {
    color: var(--text-main);
}

.schedule-type-btn.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #030712;
}

/* Datetime Picker Container */
.schedule-datetime-container {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
}

.schedule-datetime-container.show {
    display: block;
    animation: fadeInSlide 0.3s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Schedule Input Group */
.schedule-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-input-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.schedule-input-group input[type="date"],
.schedule-input-group input[type="time"] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.schedule-input-group input:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
}

.schedule-input-group input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}

.schedule-input-group input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Schedule Preview */
.schedule-preview {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 0.5rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.schedule-preview.show {
    display: flex;
}

.schedule-preview i {
    width: 16px;
    height: 16px;
    color: var(--brand-primary);
}

.schedule-preview-text {
    font-size: 0.875rem;
    color: var(--text-main);
}

.schedule-preview-text strong {
    color: var(--brand-primary);
}

/* Modal Schedule Options */
.schedule-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.schedule-modal-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.schedule-modal-option:hover {
    border-color: var(--brand-primary);
    background: rgba(0, 245, 255, 0.05);
}

.schedule-modal-option.selected {
    border-color: var(--brand-primary);
    background: rgba(0, 245, 255, 0.1);
}

.schedule-modal-option i {
    width: 24px;
    height: 24px;
    color: var(--brand-primary);
}

.schedule-modal-option-content {
    flex: 1;
    text-align: left;
}

.schedule-modal-option-title {
    font-weight: 600;
    color: var(--text-main);
}

.schedule-modal-option-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Schedule Inline Picker for Modal */
.schedule-inline-picker {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    display: none;
}

.schedule-inline-picker.show {
    display: block;
    animation: fadeInSlide 0.3s ease;
}