/* =========================================
   1. GENEL VE RESET (TAŞMA KORUMASI)
   ========================================= */
#boy-wizard-app, #boy-manager-wrapper, .boy-auth-wrapper, #boy-occupancy-list-wrapper { 
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    box-sizing: border-box; 
    line-height: 1.5;
    width: 100%; 
    max-width: 100vw; 
    overflow-x: hidden !important; 
} 
*, *:before, *:after { box-sizing: inherit; }

/* =========================================
   2. SİHİRBAZ İSKELETİ (MASAÜSTÜ)
   ========================================= */
#boy-wizard-app { 
    display: flex; 
    width: 100%; 
    max-width: 1200px; 
    margin: 20px auto; 
    background: #fff; 
    border-radius: 16px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    overflow: hidden; 
    min-height: 600px; 
}

/* Sol Menü (Sidebar) */
.boy-wiz-sidebar { 
    width: 280px; 
    background: #101928; 
    color: #fff; 
    padding: 30px 20px; 
    display: flex; 
    flex-direction: column; 
    flex-shrink: 0; 
}

/* Kullanıcı Bilgisi */
.boy-wiz-user { 
    display: flex; align-items: center; gap: 15px; 
    margin-bottom: 30px; padding-bottom: 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; 
} 
.boy-wiz-user img { border-radius: 50%; width: 40px; height: 40px; object-fit: cover; } 
.boy-wiz-user span { font-weight: 600; font-size: 14px; display: inline-block; }

/* Adımlar */
.boy-wiz-steps { list-style: none; padding: 0; margin: 0; } 
.boy-wiz-steps li { 
    padding: 15px; margin-bottom: 10px; border-radius: 8px; 
    color: rgba(255,255,255,0.7); display: flex; align-items: center; 
    gap: 12px; transition: 0.3s; cursor: default; font-size: 14px; 
} 
.boy-wiz-steps li.active { background: rgba(255,255,255,0.15); color: #fff; font-weight: 600; }
.step-icon { 
    width: 26px; height: 26px; background: rgba(255,255,255,0.1); 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; font-size: 12px; flex-shrink: 0; 
} 
.boy-wiz-steps li.active .step-icon { background: #3788d8; color: #fff; }

/* Çıkış Butonu */
.boy-wiz-logout { margin-top: auto; } 
.boy-wiz-logout a { color: #ff6b6b; text-decoration: none; font-size: 14px; display: block; padding: 10px; }

/* İçerik Alanı */
.boy-wiz-content { flex: 1; padding: 40px; position: relative; background: #fff; }

/* =========================================
   3. ODA KARTLARI (KOMPAKT & MODERN)
   ========================================= */
.boy-room-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    gap: 15px; margin-bottom: 30px; width: 100%; 
}
.boy-room-card { 
    border: 1px solid #e0e0e0; 
    border-radius: 12px; 
    padding: 15px; 
    cursor: pointer; 
    position: relative; 
    transition: all 0.2s ease; 
    background: #fff; 
    display: flex; align-items: center; gap: 15px; 
    min-height: 70px; 
}
.boy-room-card:hover { border-color: #bbb; background: #fcfcfc; } 
.boy-room-card.selected { border-color: #3788d8; background: #f0f7fd; box-shadow: 0 4px 10px rgba(55, 136, 216, 0.15); }

.brc-color { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(0,0,0,0.05); } 
.brc-info { flex: 1; overflow: hidden; } 
.brc-name { font-weight: 600; font-size: 14px; color: #1e293b; line-height: 1.3; margin-bottom: 4px; } 
.brc-cap { font-size: 12px; color: #64748b; } 
.brc-check { display: none; color: #3788d8; font-size: 20px; font-weight: bold; } 
.boy-room-card.selected .brc-check { display: block; }

/* =========================================
   4. SAAT SEÇİMİ VE TAKVİM
   ========================================= */
.boy-wiz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } 
.boy-wiz-section { grid-column: span 2; }

/* Takvim */
.boy-custom-calendar { background: #f8fafc; border-radius: 12px; padding: 20px; width: 100%; }
.boy-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-weight: bold; font-size: 15px; } 
.boy-cal-prev, .boy-cal-next { padding: 5px 12px; background: #e2e8f0; border-radius: 6px; cursor: pointer; }
.boy-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; } 
.boy-cal-head { font-size: 13px; color: #64748b; font-weight: 600; padding-bottom: 8px; }
.boy-cal-day { padding: 10px; border-radius: 8px; font-size: 14px; cursor: pointer; } 
.boy-cal-day:hover { background: #e2e8f0; } .boy-cal-day.selected { background: #3788d8; color: #fff; } 
.boy-cal-day.disabled { color: #cbd5e1; pointer-events: none; } .boy-cal-day.today { border: 1px solid #3788d8; color: #3788d8; font-weight: bold; }

/* Slotlar (Saatler) */
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; width: 100%; } 
.slot-btn { padding: 10px; border: 1px solid #e2e8f0; border-radius: 8px; text-align: center; cursor: pointer; transition: 0.2s; font-size: 13px; width: 100%; } 
.slot-btn:hover { border-color: #3788d8; background: #eff6ff; } 
.slot-btn.selected { background: #3788d8; color: #fff; border-color: #3788d8; } 
.slot-btn.busy { background: #f1f5f9; color: #cbd5e1; cursor: not-allowed; text-decoration: line-through; }

/* Footer Butonları */
.boy-wiz-footer { margin-top: 30px; display: flex; justify-content: flex-end; gap: 15px; border-top: 1px solid #eee; padding-top: 20px; } 
.boy-btn-next { background: #3788d8; color: #fff; border: none; padding: 12px 30px; border-radius: 50px; cursor: pointer; font-weight: 600; font-size: 15px; } 
.boy-btn-next:disabled { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; } 
.boy-btn-back { background: transparent; border: 1px solid #cbd5e1; padding: 12px 30px; border-radius: 50px; cursor: pointer; font-size: 15px; }

/* Formlar */
.boy-wiz-form input, .boy-wiz-form select { width: 100%; padding: 14px; border: 1px solid #cbd5e1; border-radius: 8px; margin-bottom: 15px; font-size: 15px; }
.boy-summary { background: #f8fafc; padding: 20px; border-radius: 8px; margin-bottom: 20px; border: 1px dashed #cbd5e1; font-size: 15px; }

/* =========================================
   5. REZERVASYON DURUM PANOSU (Timeline)
   ========================================= */
#boy-occupancy-list-wrapper { max-width: 800px; margin: 20px auto; background: #fff !important; padding: 25px !important; border-radius: 12px !important; box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important; display: block !important; width: 100% !important; box-sizing: border-box !important; }
#boy-occupancy-list-wrapper .boy-header { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 20px !important; padding-bottom: 15px !important; border-bottom: 2px solid #f0f0f1 !important; }
#boy-occupancy-list-wrapper h2 { margin: 0 !important; font-size: 20px !important; color: #333 !important; font-weight: 700 !important; border: none !important; }
#boy-occupancy-list-wrapper .boy-btn-refresh { background: #fff !important; border: 1px solid #ddd !important; padding: 8px 20px !important; border-radius: 20px !important; cursor: pointer !important; font-size: 14px !important; color: #333 !important; }

/* Durum Kartı */
.boy-status-card { display: flex !important; flex-direction: column !important; background: #fff !important; border: 1px solid #eef0f3 !important; border-radius: 12px !important; padding: 20px !important; margin-bottom: 15px !important; box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important; position: relative !important; overflow: hidden !important; }
.boy-status-card.pending { border-left: 5px solid #ffc107 !important; } 
.boy-status-card.confirmed { border-left: 5px solid #28a745 !important; }

.bsc-header { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 10px !important; }
.bsc-date { font-weight: 700 !important; color: #333 !important; font-size: 16px !important; }
.bsc-status { font-size: 12px !important; padding: 4px 12px !important; border-radius: 20px !important; font-weight: 700 !important; text-transform: uppercase !important; }
.bsc-status.pending { background: #fff3cd !important; color: #856404 !important; } 
.bsc-status.confirmed { background: #d4edda !important; color: #155724 !important; }

.bsc-body { font-size: 14px !important; color: #555 !important; line-height: 1.6 !important; }
.bsc-room { color: #333 !important; font-weight: 600 !important; }
.bsc-time { font-family: monospace !important; font-size: 14px !important; background: #f8f9fa !important; padding: 2px 6px !important; border-radius: 4px !important; }
.bsc-room-dot { display: inline-block !important; width: 14px !important; height: 14px !important; border-radius: 50% !important; margin-right: 6px !important; vertical-align: middle !important; border: 1px solid rgba(0,0,0,0.1) !important; }

/* =========================================
   6. YÖNETİCİ PANELİ & EXCEL BUTONU
   ========================================= */
#boy-manager-wrapper { max-width: 900px; margin: 30px auto; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.boy-tabs { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 2px solid #f0f0f1; padding-bottom: 10px; }
.boy-tab { background: transparent; border: none; font-size: 16px; font-weight: 600; color: #999; cursor: pointer; padding: 10px 20px; border-radius: 8px; transition: .2s; }
.boy-tab.active { background: #eef2ff; color: #3788d8; }

.boy-mgr-grid { display: grid; gap: 15px; } 
.boy-mgr-card { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 20px; } 
.bmc-info { flex: 1; } 
.bmc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; } 
.bmc-user { font-weight: 700; font-size: 15px; } 
.bmc-room { font-size: 12px; background: #f1f5f9; padding: 2px 8px; border-radius: 4px; color: #64748b; } 
.boy-action-btn { width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-left: 5px; } 
.boy-action-btn.approve { background: #dcfce7; color: #166534; } 
.boy-action-btn.reject { background: #fee2e2; color: #991b1b; }

/* EXCEL BUTONU (YENİ) */
.page-title-action {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 13px;
    vertical-align: middle;
    background: #2271b1;
    color: #fff !important;
}
.page-title-action:hover { background-color: #135e96 !important; }

/* =========================================
   7. MOBİL & TABLET (KESİN ÇÖZÜM)
   ========================================= */
@media screen and (max-width: 900px) {
    /* Ana Çerçeve */
    #boy-wizard-app { flex-direction: column !important; width: 100% !important; max-width: 100vw !important; margin: 0 !important; padding: 0 !important; border-radius: 0 !important; box-shadow: none !important; border: none !important; overflow-x: hidden !important; }
    
    /* Üst Menü */
    .boy-wiz-sidebar { 
        width: 100% !important; padding: 10px 15px !important; 
        flex-direction: row !important; align-items: center !important; 
        justify-content: space-between !important; 
        background: #101928 !important; min-height: 60px !important; 
        box-sizing: border-box !important;
    }
    .boy-wiz-user { display: none !important; } 
    
    /* Çıkış Butonu */
    .boy-wiz-logout { display: block !important; margin: 0 !important; }
    .boy-wiz-logout a { border: 1px solid #ff6b6b !important; padding: 5px 10px !important; border-radius: 4px !important; font-size: 11px !important; font-weight: bold !important; color: #ff6b6b !important; }

    /* Adımlar */
    .boy-wiz-steps { display: flex !important; gap: 5px !important; overflow-x: auto !important; flex: 1 !important; margin-right: 10px !important; }
    .boy-wiz-steps li { margin: 0 !important; padding: 6px 12px !important; background: rgba(255,255,255,0.1) !important; flex: 0 0 auto !important; font-size: 12px !important; white-space: nowrap !important; }
    .step-icon { width: 18px !important; height: 18px !important; font-size: 10px !important; margin-right: 5px !important; }

    /* İçerik */
    .boy-wiz-content { padding: 15px 5px !important; width: 100% !important; box-sizing: border-box !important; }
    
    /* Grid'leri Alt Alta Al */
    .boy-wiz-grid { display: flex !important; flex-direction: column !important; gap: 20px !important; width: 100% !important; }
    .boy-wiz-section, .boy-wiz-calendar-container, .boy-wiz-slots { width: 100% !important; grid-column: auto !important; }

    /* ODA KARTLARI (Taşma Önleyici %94) */
    .boy-room-grid { display: flex !important; flex-direction: column !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
    .boy-room-card { width: 94% !important; margin: 0 auto 10px auto !important; box-sizing: border-box !important; padding: 15px !important; display: flex !important; align-items: center !important; min-height: 60px !important; }
    .brc-name { font-size: 14px !important; white-space: normal !important; } 

    /* Footer */
    .boy-wiz-footer { flex-direction: column-reverse !important; gap: 10px !important; width: 94% !important; margin: 20px auto 0 auto !important; padding: 0 !important; box-sizing: border-box !important; }
    .boy-btn-next, .boy-btn-back { width: 100% !important; }
    
    /* Yönetici Mobili */
    .boy-mgr-card { flex-direction: column; align-items: flex-start; gap: 15px; } 
    .bmc-actions { width: 100%; display: flex; justify-content: flex-end; border-top: 1px solid #eee; padding-top: 10px; }
    
    /* Timeline Mobili */
    #boy-occupancy-list-wrapper .boy-timeline-card { flex-direction: column !important; align-items: flex-start !important; padding: 15px !important; width: 100% !important; box-sizing: border-box !important; }
    #boy-occupancy-list-wrapper .btc-time { border-right: none !important; border-bottom: 1px solid #eee !important; width: 100% !important; margin-bottom: 10px !important; padding-bottom: 10px !important; text-align: left !important; justify-content: flex-start !important; font-size: 16px !important; min-width: auto !important; }
}

/* =========================================
   8. 🌟 MODERN LOGIN EKRANI (CAM EFEKTİ) 🌟
   ========================================= */
.boy-modern-auth-wrapper { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    display: flex; justify-content: center; align-items: center; 
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover; 
    z-index: 999999; /* Temanın üstüne çıkması için */
}
.boy-modern-auth-wrapper::before { 
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(15, 23, 42, 0.65); /* Biraz daha koyu perde */
    backdrop-filter: blur(12px); 
    z-index: -1; 
}

.boy-modern-card { 
    background: rgba(255, 255, 255, 0.95); 
    padding: 40px; 
    border-radius: 24px; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); 
    width: 90%; max-width: 420px; 
    text-align: center; 
    position: relative; z-index: 2;
    animation: boyFadeIn 0.5s ease-out;
}

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

.boy-modern-card h2 { 
    margin: 0 0 30px 0; 
    color: #1e293b; 
    font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
}

.boy-input-with-icon { 
    margin-bottom: 20px; 
    background: #f1f5f9; 
    border-radius: 12px; 
    padding: 4px 15px; 
    display: flex; align-items: center; 
    border: 2px solid transparent; 
    transition: all 0.2s; 
}
.boy-input-with-icon:focus-within { 
    background: #fff; 
    border-color: #3b82f6; 
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); 
}
.boy-input-with-icon input { 
    border: none; background: transparent; 
    padding: 12px 5px; width: 100%; outline: none; 
    font-size: 15px; color: #334155; font-weight: 500;
}

.boy-login-row { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 25px; font-size: 13px; color: #64748b; 
}
.boy-remember { display: flex; align-items: center; gap: 6px; cursor: pointer; user-select: none; }
.boy-forgot-pass { color: #3b82f6; text-decoration: none; font-weight: 600; transition: .2s; }
.boy-forgot-pass:hover { color: #2563eb; text-decoration: underline; }

.boy-modern-btn { 
    width: 100%; padding: 16px; 
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); 
    color: #fff; border: none; border-radius: 14px; 
    font-size: 16px; font-weight: 700; letter-spacing: 0.5px;
    cursor: pointer; 
    transition: transform 0.1s, box-shadow 0.2s; 
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}
.boy-modern-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 20px -5px rgba(59, 130, 246, 0.4); }
.boy-modern-btn:active { transform: scale(0.98); }

.btn-green { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3); }
.btn-green:hover { box-shadow: 0 15px 20px -5px rgba(34, 197, 94, 0.4); }

.boy-modern-footer { margin-top: 25px; font-size: 14px; color: #64748b; }
.boy-modern-footer a { color: #3b82f6; font-weight: 700; text-decoration: none; }

/* Uyarı Kutuları */
.boy-alert-box { padding: 15px; border-radius: 10px; margin-bottom: 25px; text-align: left; font-size: 14px; line-height: 1.5; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.boy-alert-box.success { background-color: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.boy-alert-box h3 { margin: 0 0 5px 0; font-size: 16px; font-weight: 800; color: inherit; }

/* SLOT RENKLERİ */
.slot-btn.confirmed { background-color: #ef4444 !important; color: white !important; border-color: #ef4444 !important; cursor: not-allowed; opacity: 0.6; text-decoration: line-through; }
.slot-btn.pending { background-color: #f59e0b !important; color: white !important; border-color: #f59e0b !important; cursor: not-allowed; opacity: 0.8; }
.slot-btn.selected { background-color: #3b82f6 !important; color: white !important; }
/* =========================================
   9. 🌟 YENİ KATILIMCI MODAL STİLİ
   ========================================= */
.boy-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    z-index: 999999; display: flex; justify-content: center; align-items: center;
}

.boy-modal-content {
    background: #fff; width: 90%; max-width: 500px;
    border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden; display: flex; flex-direction: column;
    max-height: 85vh; animation: boyZoomIn 0.3s ease;
}

@keyframes boyZoomIn { from {transform: scale(0.9); opacity:0;} to {transform: scale(1); opacity:1;} }

.boy-modal-header {
    background: #f8f9fa; padding: 15px 20px; border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
}
.boy-modal-header h3 { margin: 0; font-size: 18px; color: #333; }
.boy-modal-close { font-size: 24px; cursor: pointer; color: #999; }
.boy-modal-close:hover { color: #333; }

.boy-modal-body { padding: 20px; overflow-y: auto; }

.boy-checklist { display: flex; flex-direction: column; gap: 8px; }
.boy-check-item {
    display: flex; align-items: center; padding: 10px;
    border: 1px solid #eee; border-radius: 8px; transition: 0.2s;
}
.boy-check-item:hover { background: #f0f7ff; border-color: #3788d8; }
.boy-check-item label { display: flex; align-items: center; width: 100%; cursor: pointer; margin: 0; }
.boy-check-item input[type="checkbox"] { width: 18px; height: 18px; margin-right: 10px; }

.boy-modal-footer { padding: 15px 20px; border-top: 1px solid #eee; text-align: right; }

.boy-modern-btn-small {
    background: #3788d8; color: #fff; border: none; padding: 8px 15px;
    border-radius: 50px; font-weight: 600; cursor: pointer; font-size: 13px;
    display: inline-flex; align-items: center; gap: 5px; transition: 0.2s;
}
.boy-modern-btn-small:hover { background: #2271b1; box-shadow: 0 4px 10px rgba(55, 136, 216, 0.3); }

/* SweetAlert Düzenlemesi (Z-Index Sorunu Olursa) */
/* =========================================
   MOBİL İÇİN MİNİMAL ÜST BAR (SADECE RAKAMLAR)
   ========================================= */
@media screen and (max-width: 900px) {
    
    /* 1. Üst Bar Zemini (Beyaz & Yapışkan) */
    .boy-wiz-sidebar { 
        background: #ffffff !important; 
        border-bottom: 1px solid #f1f5f9 !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
        padding: 10px 20px !important; /* Kenar boşluklarını artırdık */
        min-height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
    }

    /* 2. Adımlar Listesi (Ortalama ve Sıkışıklığı Giderme) */
    .boy-wiz-steps { 
        display: flex !important;
        gap: 15px !important; /* Yuvarlaklar arası boşluk */
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        overflow: visible !important; /* Kaydırmayı kapattık */
    }

    /* 3. Adım Kapsayıcısı (Yazıyı Gizle) */
    .boy-wiz-steps li { 
        font-size: 0 !important; /* Yazıları (Seçim/Detay) gizler */
        padding: 0 !important; 
        background: transparent !important; 
        border: none !important;
        margin: 0 !important;
    }

    /* 4. Yuvarlak İkonlar (Görünür Yap & Büyüt) */
    .step-icon { 
        font-size: 14px !important; /* Rakamı geri getir */
        width: 32px !important; 
        height: 32px !important; 
        background: #f1f5f9 !important; /* Pasif gri zemin */
        color: #94a3b8 !important; /* Pasif gri yazı */
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important; /* Yanındaki yazıyı sildiğimiz için margin yok */
        font-weight: 700 !important;
        transition: all 0.3s ease !important;
    }
    
    /* 5. Aktif Adım (Mavi ve Parlak) */
    .boy-wiz-steps li.active .step-icon {
        background: #3b82f6 !important; /* Lazzoni Mavisi */
        color: #fff !important;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4) !important; /* Hafif parlama */
        transform: scale(1.1) !important; /* Aktif olan biraz daha büyük */
    }

    /* 6. Çıkış Butonu (Sağ tarafa yasla) */
    .boy-wiz-logout {
        margin-left: auto !important; /* En sağa iter */
    }
    
    .boy-wiz-logout a { 
        background: #fee2e2 !important; 
        color: #ef4444 !important; 
        padding: 8px 12px !important; 
        font-size: 12px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }
    
    /* Gereksizleri Gizle */
    .boy-wiz-user { display: none !important; }
}
/* İzin Modal Stilleri (YENİ) */
#boy-leave-modal .boy-modal-content {
    max-width: 400px;
}
#boy-leave-modal .boy-input-text {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 10px;
}
/* Sidebar Buton Grubu */
.boy-wiz-logout {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Çıkış Yap Butonu */
.boy-btn-logout {
    color: #ff6b6b !important;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 10px;
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.2s;
}
.boy-btn-logout:hover {
    background: #ff6b6b;
    color: #fff !important;
}

/* YENİ: Rezervasyonlarım Butonu */
.boy-btn-my-res {
    color: #3788d8 !important; /* Lazzoni Mavisi */
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 10px;
    border: 1px solid #3788d8;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.2s;
}
.boy-btn-my-res:hover {
    background: #3788d8;
    color: #fff !important;
}

/* Mobil Uyumluluk */
@media screen and (max-width: 900px) {
    .boy-wiz-logout {
        flex-direction: row !important;
        margin: 0 !important;
        gap: 5px !important;
    }
    .boy-btn-my-res, .boy-btn-logout {
        font-size: 11px !important;
        padding: 6px 10px !important;
        white-space: nowrap;
    }
}

/* Rezervasyon Listesi (Modal İçi) */
.boy-res-list-container {
    max-height: 400px;
    overflow-y: auto;
}
.boy-res-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}
.boy-res-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-color: #3788d8;
}
.boy-res-info h4 { margin: 0 0 5px 0; color: #333; font-size: 15px; }
.boy-res-meta { font-size: 13px; color: #666; }
.boy-res-status {
    font-size: 11px; font-weight: bold; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px; margin-left: 5px;
}
.boy-res-status.pending { background: #fff3cd; color: #856404; }
.boy-res-status.confirmed { background: #d4edda; color: #155724; }
.boy-btn-cancel {
    background: #fff;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}
.boy-btn-cancel:hover { background: #dc3545; color: #fff; }