/* ==========================================================================
   RANDEVUM.COM - ORIGINAL CLEAN ORANGE & WHITE DESIGN SYSTEM
   ========================================================================== */

:root {
    --primary-orange: #f26522;
    --primary-orange-hover: #d95313;
    --primary-orange-light: #fdf0e9;
    
    --slate-dark: #2c3e50;
    --slate-dark-hover: #1a252f;
    
    --bg-pure: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-card: #ffffff;
    
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    
    --border-gray: #e2e8f0;
    --border-orange: #ffd8b3;
    
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 25px rgba(242, 101, 34, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    
    --font-main: 'Outfit', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-surface);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

select {
    color: #6b7280;
    font-weight: 400;
}

select:not(:invalid) {
    color: #1f2937; 
}

.app-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background: var(--bg-pure);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--bg-pure);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brand-icon-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.logo-img-header {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.brand-dot {
    color: var(--primary-orange);
}

/* GÖRSEL 2 YENİ MARKA LOGO BİLEŞENİ (MÜŞTERİ YÖNETİM PANELİ) */
.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-top-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.brand-title-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1;
}

.brand-pill-badge {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(234, 88, 12, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.brand-sub-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0284c7;
    letter-spacing: -0.1px;
    margin-top: 3px;
    line-height: 1;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.main-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.screen {
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
    position: relative;
    flex: 1;
}

.screen.active {
    display: flex;
}

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

/* HOME SCREEN */
.home-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 1rem 0;
    min-height: calc(100vh - 110px);
    flex: 1;
}

.large-logo-box {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

.large-logo-box-sm {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 0 auto 1.25rem auto;
}

.logo-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.home-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.action-buttons-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-large {
    width: 100%;
    height: 60px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.btn-orange {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: var(--shadow-soft);
}
.btn-orange:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
}

.btn-slate {
    background: var(--slate-dark);
    color: #fff;
}
.btn-slate:hover {
    background: var(--slate-dark-hover);
    transform: translateY(-2px);
}

.link-business {
    margin-top: 2rem;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.arthus-logo-container {
    margin-top: auto !important;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 8px;
}

.arthus-logo-img {
    height: 35px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Gri/Kirli beyaz arkaplanı yok eder, sadece logo kalır */
}

/* LOGIN & REGISTER STYLES */
.auth-container { padding: 0.5rem 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.register-logo-center { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.5rem; }
.auth-heading { font-size: 1.85rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.25rem; }
.auth-sub { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1.5rem; }
.input-with-icon-box { position: relative; display: flex; align-items: center; }
.input-left-icon { position: absolute; left: 1.25rem; color: var(--primary-orange); font-size: 1.1rem; pointer-events: none; }
.country-code-box { position: absolute; left: 2.75rem; display: flex; align-items: center; justify-content: center; border: 1px solid #cbd5e1; border-radius: 8px; padding: 0.3rem 0.5rem; font-size: 0.9rem; font-weight: 700; color: #1e293b; background: #fff; pointer-events: none; z-index: 2; }
.tel-with-code { padding-left: 6.2rem !important; }
.input-right-icon { position: absolute; right: 1.25rem; color: var(--text-gray); font-size: 1.1rem; cursor: pointer; z-index: 10; user-select: none; }
.input-custom-styled { width: 100%; height: 58px; background: var(--bg-surface); border: 1.5px solid var(--border-gray); border-radius: var(--radius-md); padding-left: 3.25rem; padding-right: 3rem; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); outline: none; transition: all 0.2s ease; font-family: inherit; }
.input-custom-styled:focus { border-color: var(--primary-orange); background: #fff; }
input[type="date"].input-custom-styled { cursor: pointer; }
input[type="date"].input-custom-styled::-webkit-calendar-picker-indicator { cursor: pointer; filter: invert(47%) sepia(85%) saturate(1450%) hue-rotate(352deg) brightness(98%) contrast(97%); }
.btn-white-google { background: #ffffff; border: 1.5px solid var(--border-gray); color: var(--text-dark); font-weight: 800; font-size: 0.95rem; }
.badge-icon-g { background: #f1f5f9; color: #4285F4; font-weight: 900; padding: 0.25rem 0.6rem; border-radius: 8px; font-size: 0.9rem; }
.btn-blue-facebook { background: #1877F2; color: #ffffff; font-weight: 800; font-size: 0.95rem; }
.badge-icon-f { background: #ffffff; color: #1877F2; font-weight: 900; padding: 0.2rem 0.65rem; border-radius: 8px; font-size: 0.95rem; }
.auth-options-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; }
.checkbox-remember, .checkbox-terms { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); cursor: pointer; line-height: 1.4; }
.checkbox-remember input, .checkbox-terms input { width: 20px; height: 20px; accent-color: var(--primary-orange); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.link-forgot-pwd { color: var(--primary-orange); font-weight: 700; font-size: 0.95rem; cursor: pointer; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.25rem; }

/* SEARCH SCREEN */
.page-title-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.page-title { font-size: 1.4rem; font-weight: 800; }
.form-group-step { margin-bottom: 1.25rem; }
.form-label-step { font-size: 0.85rem; font-weight: 600; color: var(--text-gray); margin-bottom: 0.35rem; margin-left: 0.5rem; }
.select-box-custom { width: 100%; height: 56px; background: var(--bg-surface); border: 1.5px solid var(--border-gray); border-radius: var(--radius-md); padding: 0 1.25rem; font-size: 0.95rem; outline: none; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1.25rem center; background-size: 1.25rem; cursor: pointer; transition: all 0.2s ease; }
.select-box-custom:focus { border-color: var(--primary-orange); background-color: #fff; }

/* USER REQUESTED - RANDEVU CONTAINER & STEP CARDS DESIGN */
.randevu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.randevu-container .header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.back-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-gray);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.randevu-container .header h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.uzman-card {
    background: var(--primary-orange-light);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.uzman-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.uzman-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    font-weight: 600;
}

.steps-info {
    margin-bottom: 1.25rem;
}

.steps-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.steps-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1.5px solid var(--border-gray);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.step-card.active-step {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-soft);
}

.step-card.disabled-step {
    opacity: 0.6;
    background: var(--bg-surface);
    cursor: not-allowed;
}

.step-card.completed-step {
    background: #ffecd6;
    border: 1.5px solid #ffd8b3;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.08);
}

.step-card.completed-step .step-icon {
    background: #f26522;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
}

.step-card.completed-step .step-number {
    color: #f26522;
    font-weight: 700;
}

.step-card.completed-step .step-title {
    color: #1e293b;
    font-weight: 800;
}

.step-card.completed-step .step-desc {
    color: #64748b;
}

.step-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--primary-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.step-arrow {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 800;
}

.selection-ready-card {
    background: #ffecd6;
    border: 1.5px solid #ffd8b3;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

.ready-badge {
    width: 40px;
    height: 40px;
    background: #f26522;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.25);
}

.ready-content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.15rem;
}

.ready-content p {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f26522;
}

.bottom-action-btn {
    width: 100%;
    height: 58px;
    border-radius: var(--radius-md);
    background: var(--primary-orange);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}

.bottom-action-btn:disabled {
    background: #cbd5e1;
    color: #64748b;
    box-shadow: none;
    cursor: not-allowed;
}

.bottom-action-btn.ready {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   ALTTAN AÇILAN TAKVİM & SAAT (BOTTOM SHEET) STYLES
   ========================================================================== */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: flex-end !important;
    z-index: 10001;
    padding: 0;
}

.bottom-sheet-content {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-top-left-radius: 32px !important;
    border-top-right-radius: 32px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding: 1.25rem 1.35rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.35rem !important;
    box-shadow: 0 -15px 45px rgba(15, 23, 42, 0.25);
    border: none;
    position: relative;
    animation: slideUpBottom 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin: 0 auto;
}

@keyframes slideUpBottom {
    from { 
        transform: translateY(100%); 
        opacity: 0.6;
    }
    to { 
        transform: translateY(0); 
        opacity: 1;
    }
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 99px;
    margin: 0 auto 0.75rem auto;
}

/* ==========================================================================
   ÜSTTEN AÇILAN BİLDİRİM PANELİ (TOP SHEET) STYLES
   ========================================================================== */
.top-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: flex-start !important;
    z-index: 10002;
    padding: 0;
}

.top-sheet-content {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 32px !important;
    border-bottom-right-radius: 32px !important;
    padding: calc(1.1rem + env(safe-area-inset-top, 0px)) 1.35rem 1.25rem 1.35rem !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
    border: none;
    position: relative;
    animation: slideDownTop 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    margin: 0 auto;
    min-height: 480px;
    max-height: 84vh;
    display: flex;
    flex-direction: column;
}

@keyframes slideDownTop {
    from { 
        transform: translateY(-100%); 
        opacity: 0.5;
    }
    to { 
        transform: translateY(0); 
        opacity: 1;
    }
}

.top-sheet-handle {
    width: 42px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 99px;
    margin: 0.85rem auto 0.2rem auto;
    cursor: pointer;
    transition: background 0.2s;
}

.top-sheet-handle:hover {
    background: #94a3b8;
}

.sheet-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    text-align: center;
}

.sheet-subtitle {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 0.85rem;
    text-align: center;
}

.selected-date-banner {
    background: #fff7ed;
    color: #ea580c;
    font-weight: 800;
    font-size: 0.84rem;
    padding: 7px 12px;
    border-radius: 12px;
    border: 1.5px solid #fed7aa;
    margin-bottom: 6px;
    text-align: center;
    display: block;
    width: 100%;
}

.time-sheet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 310px;
    overflow-y: auto;
    padding: 4px 2px;
    scrollbar-width: thin;
}

.cal-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 6px 10px;
    margin-bottom: 0.85rem;
}

.cal-month-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
}

.cal-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s;
}

.cal-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 800;
    font-size: 0.76rem;
    color: #64748b;
    margin-bottom: 6px;
}

.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
    align-items: center;
    margin-bottom: 0.9rem;
}

.cal-day {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0284c7;
    background: #e0f2fe;
    border: 1.5px solid #bae6fd;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 12px;
    user-select: none;
    transition: all 0.15s ease;
}

.cal-day.past {
    color: #cbd5e1;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    cursor: not-allowed;
}

.cal-day.closed-day {
    color: #ef4444;
    background: #fee2e2;
    border: 1.5px solid #fca5a5;
    cursor: not-allowed;
}

.cal-day.staff-off {
    color: #7e22ce;
    background: #f3e8ff;
    border: 1.5px solid #d8b4fe;
    cursor: not-allowed;
}

.cal-day.active-day {
    border: 2.5px solid #ea580c !important;
}

.cal-day.selected-target {
    background: #0284c7 !important;
    color: #ffffff !important;
    border: 2px solid #0369a1 !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.cal-day.full {
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-circle {
    width: 44px;
    height: 44px;
    border: 1.5px solid #e11d48;
    background: #fff1f2;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.full-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #e11d48;
}

.full-label {
    font-size: 0.58rem;
    font-weight: 800;
    color: #e11d48;
    margin-top: 2px;
}

/* APPOINTMENTS TABS & CARDS DESIGN MATCHING USER SCREENSHOT */
.appt-tabs-bar {
    display: flex;
    border-bottom: 1.5px solid #e2e8f0;
    margin-bottom: 1.25rem;
}

.appt-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-align: center;
}

.appt-tab-btn.active {
    color: #f26522;
    font-weight: 800;
}

.appt-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f26522;
    border-radius: 99px;
}

#appointments-list {
    max-height: 490px;
    overflow-y: auto;
    padding-right: 0.4rem;
    margin-right: -0.2rem;
}

/* Custom Soft Orange Scrollbar for Appointments List Matching User Screenshot */
#appointments-list::-webkit-scrollbar {
    width: 6px;
}

#appointments-list::-webkit-scrollbar-track {
    background: #ffecd6;
    border-radius: 99px;
}

#appointments-list::-webkit-scrollbar-thumb {
    background: #ffd8b3;
    border-radius: 99px;
}

#appointments-list::-webkit-scrollbar-thumb:hover {
    background: #f26522;
}

.appointment-card-v2 {
    background: #ffffff;
    border: 1.5px solid #f97316;
    border-radius: 24px;
    padding: 1.25rem 1.15rem 1rem 1.15rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.05);
    text-align: left;
    transition: all 0.2s ease;
}

.v2-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.v2-status-badge {
    background: #ffecd6;
    color: #f26522;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.v2-status-badge.cancelled {
    background: #fff1f2;
    color: #e11d48;
}

.v2-status-badge.completed {
    background: #dcfce7;
    color: #15803d;
}

.btn-repeat-booking {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    transition: all 0.25s ease;
    margin-top: 0.75rem;
}

.btn-repeat-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.btn-repeat-booking:active {
    transform: translateY(0);
}

.v2-datetime {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.v2-doc-name {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.staff-name-main {
    display: block;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
}

.staff-title-sub {
    display: block;
    color: #64748b;
    font-size: 0.90rem;
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 4px;
    line-height: 1.25;
    letter-spacing: -0.1px;
}

.v2-doc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f26522;
    margin-bottom: 0.75rem;
}

.v2-location {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.v2-btn-cancel {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #e11d48;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v2-btn-cancel:hover {
    background: #fff1f2;
    border-color: #e11d48;
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1.5rem;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: popupIn 0.25s ease;
}

.confirmation-card-custom {
    text-align: left;
    padding: 1.75rem 1.5rem;
    border-radius: 28px;
}

.modal-custom-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.modal-custom-sub {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.modal-detail-card-orange {
    background: #ffecd6;
    border: 1px solid #ffd8b3;
    border-radius: 20px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
}

.modal-detail-card-gray {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.text-muted {
    color: #64748b;
    font-size: 0.88rem;
}

.row-icon-orange {
    color: #f26522;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.row-icon-gray {
    color: #94a3b8;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.row-icon-dark {
    color: #2c3e50;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.modal-card-divider {
    height: 1px;
    background: #ffe4c7;
    margin: 0.85rem 0;
}

.user-name-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-left: 28px;
}

.text-orange {
    color: #f26522;
}

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

.modal-stacked-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.btn-text-only {
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem 0;
    text-align: center;
    width: 100%;
}

.btn-text-only:hover {
    color: #1e293b;
}

/* ==========================================================================
   İLETİLEN BİREBİR BAŞARI EKRANI (basariEkrani) STİLLERİ
   ========================================================================== */
.success-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

.success-icon-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0 2rem 0;
}

.check-circle {
    width: 90px;
    height: 90px;
    background: #40c057;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 25px rgba(64, 192, 87, 0.25);
}

.success-icon-area h1 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.sms-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 99px;
}

.summary-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.35rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.summary-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.accent {
    color: #0284c7;
    font-weight: 800;
}

.divider {
    border: none;
    height: 1px;
    background: #ffe4c7;
    margin: 0.85rem 0;
}

.icon {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    display: inline-block;
}

/* SMS STYLES */
.sms-input-container {
    margin: 1rem 0 0.5rem 0;
}

.sms-code-field {
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 12px;
    background: #f8fafc;
    border: 2px solid var(--primary-orange);
    border-radius: var(--radius-md);
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease;
}

.sms-code-field:focus {
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.sms-demo-hint {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    text-align: center;
}

/* ==========================================================================
   BİREBİR GÖRSELDEN ÜRETİLEN USER DASHBOARD EKRANI STİLLERİ
   ========================================================================== */
.user-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.user-brand-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-orange-badge {
    width: 46px;
    height: 46px;
    background: #f26522;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.dash-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name-small {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.user-greeting-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.user-avatar-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffd8b3;
    background: #ffecd6;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.dashboard-banner-box {
    background: #ffecd6;
    border: 1.5px solid #ffd8b3;
    border-radius: 24px;
    padding: 1.25rem 1.35rem;
    margin-bottom: 1.15rem;
    text-align: left;
}

.dashboard-banner-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.dashboard-banner-box p {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.35;
}

.dashboard-actions-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.btn-dashboard-action {
    width: 100%;
    height: 58px;
    background: #f26522;
    color: #ffffff;
    border-radius: 18px;
    border: none;
    padding: 0 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.btn-dashboard-action:hover {
    background: #d95313;
    transform: translateY(-2px);
}

.dash-btn-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.08rem;
    font-weight: 800;
}

.dash-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.dash-arrow {
    font-size: 1.05rem;
}

.upcoming-appt-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.25rem 1.3rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.upcoming-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.upcoming-card-header h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
}

.upcoming-date-pill {
    background: #ffecd6;
    color: #f26522;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
}

.upcoming-doc-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.upcoming-bus-info {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}

/* PROFILE DROPDOWN MENU MATCHING USER SCREENSHOT */
.profile-dropdown-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 235px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0.5rem;
    z-index: 1000;
    animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: #f8fafc;
}

.menu-user-icon-box {
    width: 38px;
    height: 38px;
    background: #ffecd6;
    color: #f26522;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.menu-user-name-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-icon {
    font-size: 1.15rem;
    color: #1e293b;
    width: 26px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0.45rem 0.5rem;
}

.logout-item:hover {
    background: #fff1f2;
}

.menu-icon-red {
    font-size: 1.15rem;
    color: #e11d48;
    width: 26px;
    text-align: center;
}

.logout-text {
    color: #e11d48;
    font-weight: 800;
}

/* Toast */
.toast-msg {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-dark);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    pointer-events: none;
}

.contact-info-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
}

.contact-info-btn:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(249, 115, 22, 0.35);
}

.contact-info-btn:active {
    transform: translateY(0);
}

/* AI CHAT SCREEN DESIGN MATCHING USER SCREENSHOT */
.ai-chat-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 140px);
    max-height: 560px;
    position: relative;
}

.ai-chat-messages-box {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0.25rem 1rem 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    font-size: 0.98rem;
    line-height: 1.5;
    word-break: break-word;
    animation: fadeIn 0.25s ease;
}

.assistant-bubble {
    align-self: flex-start;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    font-weight: 600;
    padding: 1.1rem 1.25rem;
    border-radius: 22px 22px 22px 4px;
    max-width: 88%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.user-bubble {
    align-self: flex-end;
    background: #f26522;
    color: #ffffff;
    font-weight: 700;
    padding: 0.9rem 1.2rem;
    border-radius: 22px 22px 4px 22px;
    max-width: 80%;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.25);
}

.ai-quick-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.4rem 0;
    margin-bottom: 0.75rem;
}

.btn-quick-pill {
    background: #ffecd6;
    color: #f26522;
    border: none;
    border-radius: 99px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-quick-pill:hover {
    background: #f26522;
    color: #ffffff;
}

.ai-chat-input-bar {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 9999px;
    height: 56px;
    padding: 0 0.5rem 0 1.25rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.ai-input-field {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.98rem;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
}

.ai-input-field::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.ai-send-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #f26522;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.ai-send-btn:hover {
    transform: scale(1.1);
}

/* EXTRA ACCOUNT ACTIONS BUTTONS MATCHING SCREENSHOT AESTHETICS */
.modal-extra-actions-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.btn-extra-outline {
    flex: 1;
    height: 46px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}

.btn-extra-outline:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.btn-extra-danger {
    flex: 1;
    height: 46px;
    background: #fff1f2;
    border: 1.5px solid #fecdd3;
    color: #e11d48;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}

.btn-extra-danger:hover {
    background: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
}

.btn-cancel-appt {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #e11d48;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    margin-top: 0.35rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-cancel-appt:hover {
    background: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
}

.badge-cancelled {
    background: #fff1f2;
    color: #e11d48;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
}

/* Guest Checkout Styles */
.btn-success {
    background: #22c55e !important;
    color: #ffffff !important;
    border-color: #22c55e !important;
}
.btn-success:hover {
    background: #16a34a !important;
    border-color: #16a34a !important;
}
.checkbox-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f97316;
    cursor: pointer;
    flex-shrink: 0;
}

/* Animated Orange Buttons for Business Landing Screen */
.btn-orange-animated {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    border: none;
    text-decoration: none;
    padding: 0.95rem 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.32);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    cursor: pointer;
}

.btn-orange-animated:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.45);
}

.btn-orange-animated:active {
    transform: translateY(-1px) scale(0.98);
}

/* Account Deletion Loading Overlay Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.85; }
}

@keyframes progressSlide {
    0% { left: 0%; width: 30%; }
    100% { left: 70%; width: 30%; }
}

/* ============================================================
   GÖRSEL 1 BİREBİR DOĞUM TARİHİ PICKER (GÜN, AY, YIL BUTONLARI)
   ============================================================ */
.birthdate-picker-container {
    position: relative;
    width: 100%;
}

.birthdate-trigger-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    cursor: pointer !important;
    user-select: none !important;
    padding: 0 1rem !important;
    background: #f8f9fa !important; /* Görsel 2 rengi: seçim yapmadan ve seçim yaptıktan sonra */
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    height: 52px !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

.birthdate-trigger-bar:hover {
    border-color: #fdba74 !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.08);
}

/* Seçim yaparken arkaplan BEYAZ */
.birthdate-trigger-bar:focus,
.birthdate-trigger-bar:focus-within,
.birthdate-trigger-bar.active {
    background: #ffffff !important;
    border-color: #f97316 !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12) !important;
}

.birthdate-icon-orange {
    color: #f97316 !important;
    font-size: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 2px !important;
}

.birthdate-pills-inline {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.date-pill-btn {
    background: #f8f9fa !important; /* Seçim öncesi ve sonrası Görsel 2 rengi */
    color: #64748b !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 999px !important; /* Görsel 2 Tam Kapsül Tasarımı */
    padding: 5px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important; /* İnce ve zarif font */
    font-family: inherit !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: 1.25 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

.date-pill-btn:hover {
    background: #ffffff !important;
    border-color: #93c5fd !important;
    color: #0f172a !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Seçim Yapıldıktan Sonra: Görsel 2 Rengi Arkaplan, İnce Açık Mavi Çerçeve, Koyu İnce Yazı */
.date-pill-btn.selected {
    background: #f8f9fa !important;
    color: #0f172a !important;
    border: 1.5px solid #93c5fd !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08) !important;
}

/* Seçim Yaparken (.active durumunda): Hem kapsül bar hem de butonların arkaplanı BEYAZ */
.birthdate-trigger-bar.active .date-pill-btn {
    background: #ffffff !important;
}

.birthdate-trigger-bar.active .date-pill-btn.selected {
    background: #ffffff !important;
    border-color: #93c5fd !important;
}

.date-chevron-icon {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    margin-left: 4px !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
}

.birthdate-trigger-bar.active .date-chevron-icon {
    transform: rotate(180deg) !important;
    color: #f97316 !important;
}

/* Görsel 1 Birebir Dropdown Menüsü */
.gorsel1-picker-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 12px;
    animation: fadeInSlideDown 0.2s ease-out;
}

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

.gorsel1-picker-header-labels {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.15fr;
    gap: 8px;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.gorsel1-picker-columns {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.15fr;
    gap: 8px;
    background: #ffffff;
}

.gorsel1-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 8px 4px;
    background: #fafbfc;
}

/* Açılır Menü Üst Kapsül Butonları */
.gorsel1-top-btn {
    width: 100%;
    height: 36px;
    background: #ffffff !important;
    color: #334155 !important;
    font-size: 0.98rem !important;
    font-weight: 500 !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 999px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.gorsel1-top-btn:hover {
    border-color: #93c5fd !important;
    color: #0f172a !important;
}

.gorsel1-top-btn.active-col-btn {
    background: #ffffff !important;
    border: 1.5px solid #f97316 !important;
    color: #f97316 !important;
    font-weight: 600 !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
}

.gorsel1-list {
    width: 100%;
    height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gorsel1-list::-webkit-scrollbar {
    width: 5px;
}

.gorsel1-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
}

.gorsel1-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.gorsel1-item {
    padding: 7px 4px;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 500;
    color: #334155;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.gorsel1-item:hover {
    background: #f8fafc;
    color: #f97316;
}

.gorsel1-item.selected {
    background: #fff7ed !important;
    color: #ea580c !important;
    font-weight: 600 !important;
    border: 1px solid #fed7aa;
}

.gorsel1-item.selected span {
    color: #ea580c !important;
    opacity: 0.85;
}

.gorsel1-picker-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.gorsel1-footer-clear-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.gorsel1-footer-clear-btn:hover {
    color: #ef4444;
    background: #fee2e2;
}

.gorsel1-footer-ok-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 7px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.3) !important;
    transition: all 0.2s ease;
}

.gorsel1-footer-ok-btn:hover {
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.45) !important;
    transform: translateY(-1px);
}

/* ==========================================================================
   MISAFIR KULLANICI SECIM & TAKIP EKRANLARI (PROFESYONEL VE ANIMASYONLU)
   ========================================================================== */

#guest-choice-screen .page-title-bar {
    margin-bottom: 0.85rem;
}

.guest-choice-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: calc(100vh - 120px);
    padding: 0 0 1.5rem 0;
    justify-content: flex-start;
}

.guest-choice-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    justify-content: stretch;
}

/* Yarı Yarıya Bölen 2 Büyük Buton / Kart */
.guest-choice-card {
    position: relative;
    flex: 1;
    min-height: 200px;
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
    user-select: none;
}

.guest-choice-card:hover {
    transform: translateY(-6px);
}

.guest-choice-card:active {
    transform: translateY(-2px) scale(0.99);
}

/* 1. Üst Kart: Misafir kullanıcı olarak randevu al (Canlı Turuncu Tema) */
.guest-card-book {
    background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
    border: 2px solid #fed7aa;
}

.guest-card-book:hover {
    border-color: #ea580c;
    box-shadow: 0 18px 36px -6px rgba(234, 88, 12, 0.25);
}

.guest-card-book .guest-card-icon-box {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
}

.guest-card-book .guest-card-btn-pill {
    background: #ea580c;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.guest-card-book:hover .guest-card-btn-pill {
    background: #c2410c;
    transform: translateX(4px);
}

/* 2. Alt Kart: Randevu Takip Ekranı (Derin Slate/Lacivert Tema) */
.guest-card-track {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
}

.guest-card-track:hover {
    border-color: #1e293b;
    box-shadow: 0 18px 36px -6px rgba(15, 23, 42, 0.2);
}

.guest-card-track .guest-card-icon-box {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.guest-card-track .guest-card-btn-pill {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.guest-card-track:hover .guest-card-btn-pill {
    background: #1e293b;
    transform: translateX(4px);
}

/* Kart Ortak Öğeleri */
.guest-card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 0.9rem;
    transition: transform 0.35s ease;
}

.guest-choice-card:hover .guest-card-icon-box {
    transform: scale(1.1) rotate(-4deg);
}

.guest-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    letter-spacing: -0.3px;
}

.guest-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
}

.guest-card-action {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
}

.guest-card-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

/* TAKIP EKRANI STILLERI */
.guest-tracking-container {
    padding: 0.5rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.guest-tracking-header-box {
    text-align: center;
    margin-bottom: 1.75rem;
}

.guest-tracking-icon-header {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #fed7aa;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin: 0 auto 0.85rem auto;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.15);
}

.guest-tracking-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
    letter-spacing: -0.4px;
}

.guest-tracking-sub {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 360px;
    line-height: 1.45;
}

/* Takip Sorgu Kartı */
.guest-track-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.07);
    margin-top: 1.25rem;
    width: 100%;
    animation: fadeIn 0.3s ease;
    box-sizing: border-box;
}

.guest-track-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed #e2e8f0;
    margin-bottom: 0.9rem;
}

.guest-track-biz-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.guest-track-code-pill {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: monospace;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
}

.track-status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.track-status-badge.status-aktif {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.track-status-badge.status-iptal {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.track-status-badge.status-gecmis {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.guest-track-detail-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.guest-track-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
}

.guest-track-label {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.guest-track-val {
    font-weight: 700;
    color: #0f172a;
    text-align: right;
}

.btn-guest-cancel-appt {
    width: 100%;
    padding: 0.85rem;
    border-radius: 14px;
    border: 1.5px solid #fecaca;
    background: #fff5f5;
    color: #dc2626;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-guest-cancel-appt:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

