:root {
    --bg-color: #dfd7e8;
    --bg-gradient: radial-gradient(circle at top right, #f4f1f8, #dfd7e8 70%);
    --text-main: #1d1b20;
    --text-muted: #5e5b66;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.7);
    --primary-accent: #111;
    --accent-mauve: #e6a0d5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    background: #2a2530; /* Darker background for presentation mode */
    min-height: 100vh;
    padding: 40px;
    margin: 0;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: var(--accent-mauve);
}

.screens-container {
    display: flex;
    gap: 0; /* Let margins handle spacing due to scale */
    padding-bottom: 40px;
    overflow-x: auto;
    align-items: flex-start;
}

.screen-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    transform: scale(0.8);
    transform-origin: top center;
    margin: 0 -30px; /* Pull them closer together to remove empty space caused by scaling */
}

.screen-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
}

.app-container {
    width: 375px;
    height: 812px;
    background: var(--bg-gradient);
    border-radius: 45px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), inset 0 0 0 10px #ffffff;
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
}

.splash-screen {
    align-items: center;
    justify-content: center;
}

/* Background elements */
.bg-sphere {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.sphere-large {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, #e6a0d5, #9c63c7);
    top: -50px;
    right: -50px;
    box-shadow: inset -20px -20px 40px rgba(0,0,0,0.2);
}

.sphere-small {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #d8b4e2, #7a5e9b);
    bottom: 120px;
    left: -40px;
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.3);
}

.bg-wireframe {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    bottom: -80px;
    right: -50px;
    z-index: 0;
}

.bg-wireframe::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 20px;
    left: -20px;
}

/* --- SPLASH SCREEN --- */
.splash-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(200,185,220,0.3) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 50px 30px;
    text-align: center;
    z-index: 1;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-30px);
}

.logo-container {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid white;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    position: absolute;
}

.leaf {
    color: var(--accent-mauve);
    font-size: 1.5rem;
    transform: translate(15px, -15px);
}

.brand-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.brand-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.glass-btn {
    position: absolute;
    bottom: 50px;
    width: calc(100% - 48px);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.glass-btn:hover {
    background: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.glass-btn i {
    background: var(--primary-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

/* --- COMMON UI --- */
.top-bar {
    display: flex;
    align-items: center;
    z-index: 2;
    margin-bottom: 20px;
}

.icon-btn.small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    color: var(--text-main);
    transition: all 0.3s ease;
}

/* --- SIGN IN SCREEN --- */
.sign-in-screen {
    padding-top: 50px;
}

.header-section {
    z-index: 1;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-container {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .icon-left {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.input-wrapper .icon-right {
    position: absolute;
    right: 15px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 15px 16px 45px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.checkmark i {
    font-size: 0.8rem;
    color: transparent;
}

.checkbox-container input:checked + .checkmark {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
}

.checkbox-container input:checked + .checkmark i {
    color: white;
}

.forgot-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
}

.solid-btn {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    border: none;
    background: var(--primary-accent);
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.solid-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.bottom-link {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    z-index: 1;
}

.bottom-link a {
    color: var(--primary-accent);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

/* --- SIGN UP SPECIFIC --- */
.scrollable-form {
    overflow-y: auto;
    padding-bottom: 60px; /* Space for the bottom link */
    scrollbar-width: none; /* Firefox */
}

.scrollable-form::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.terms-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-top: 15px;
    padding: 0 10px;
}

/* --- VERIFY CODE SPECIFIC --- */
.otp-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.otp-input {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.otp-input:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.resend-section {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- ADDRESS SPECIFIC --- */
.glass-textarea {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
    resize: none;
    line-height: 1.5;
}

.glass-textarea:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
}

/* --- GALLERY SPECIFIC --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.upload-box {
    aspect-ratio: 1;
    border-radius: 20px;
    border: 1px dashed rgba(255,255,255,0.8);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-box:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--primary-accent);
}

.upload-hero:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}

/* --- TOGGLE SWITCH --- */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-border);
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
input:checked + .slider {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
}
input:checked + .slider:before {
  transform: translateX(22px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/* --- DASHBOARD SPECIFIC --- */
.dashboard-light {
    background: #f4f6fa;
    --text-main: #1a1a24;
    --text-muted: #6e7381;
    --glass-border: rgba(0, 0, 0, 0.04);
}
.dashboard-light .bg-sphere {
    background: linear-gradient(135deg, #d8bcf7, #b79ae8);
    opacity: 1;
}

.stats-scroll::-webkit-scrollbar {
    display: none;
}
.stat-box {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border: none;
    border-radius: 18px;
    padding: 14px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04), 0 2px 10px rgba(0,0,0,0.02);
}
.stat-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    white-space: nowrap;
}
.stat-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.appointment-card {
    background: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.apt-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}
.apt-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
}
.apt-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.apt-info .dot { margin: 0 6px; font-size: 0.5rem; opacity: 0.5; }

.apt-mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}
.apt-time {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.apt-status {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 600;
}
.apt-status.confirmed {
    color: #2e7d32;
    background: rgba(162, 217, 162, 0.4);
}
.apt-status.pending {
    color: #d86d00;
    background: rgba(255, 213, 140, 0.5);
}

.apt-bot {
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 15px;
}
.mark-completed {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.mark-completed i {
    color: #2e7d32;
    font-size: 1.2rem;
}

/* Bottom Nav */
.bottom-nav {
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
    height: 70px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 10;
}
.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px;
    border-radius: 25px;
}
.nav-item i {
    font-size: 1.5rem;
    transition: all 0.4s ease;
}
.nav-item span {
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    white-space: nowrap;
}

/* Hover effect for inactive links */
.nav-item:not(.active):hover {
    color: var(--primary-accent);
}
.nav-item:not(.active):hover i {
    transform: scale(1.15);
}

/* New Premium Active Design: Expanding Horizontal Pill */
.nav-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 10px 18px;
}
.nav-item.active span {
    max-width: 100px;
    opacity: 1;
    margin-left: 8px;
}

/* --- SCROLLING ARROWS --- */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}
.scroll-arrow.left-arrow {
    left: 20px;
}
.scroll-arrow.right-arrow {
    right: 20px;
}
.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
}

/* --- BOOKING SPECIFIC --- */
.calendar-card::-webkit-scrollbar {
    display: none;
}
.day-pill {
    min-width: 55px;
    height: 70px;
    border-radius: 18px;
    background: #f4f6fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.day-pill span {
    font-size: 0.8rem;
    font-weight: 500;
}
.day-pill strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}
.day-pill.active {
    background: rgba(183, 154, 232, 0.25);
}
.day-pill.active span, .day-pill.active strong {
    color: var(--primary-accent);
}

.appointment-card.detailed .apt-info p {
    font-size: 0.85rem;
    font-weight: 500;
}
.appointment-card.detailed .apt-mid {
    margin-top: 15px;
    padding-top: 0;
    border-top: none;
}
.mark-completed-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    transition: all 0.3s ease;
}
.mark-completed-btn i {
    color: #4caf50; 
    font-size: 1.3rem;
}
.fab-btn {
    position: absolute;
    bottom: 110px; 
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: var(--primary-accent);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}
.fab-btn:hover {
    transform: scale(1.05);
}

/* --- FILTER SPECIFIC --- */
.filter-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-pill {
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.filter-pill.active {
    background: rgba(183, 154, 232, 0.15);
    color: var(--primary-accent);
    border-color: rgba(183, 154, 232, 0.3);
}
.filter-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Custom Radio */
.custom-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
}
.custom-radio input {
    display: none;
}
.radio-mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    display: inline-block;
    transition: all 0.2s ease;
}
.custom-radio input:checked + .radio-mark {
    border-color: var(--primary-accent);
}
.custom-radio input:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-accent);
}

/* Custom Slider */
.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
}
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-accent);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Sort List */
.sort-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.sort-item:last-child {
    border-bottom: none;
}
.sort-item.active {
    color: var(--primary-accent);
    font-weight: 600;
}
.sort-item i {
    display: none;
}
.sort-item.active i {
    display: block;
    font-size: 1.2rem;
}

/* Checkbox List */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
}
.custom-checkbox input {
    display: none;
}
.check-mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    background: white;
}
.check-mark i {
    color: transparent;
    font-size: 0.9rem;
}
.custom-checkbox input:checked + .check-mark {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
}
.custom-checkbox input:checked + .check-mark i {
    color: white;
}
.ghost-btn:hover {
    background: #e8ebf2 !important;
}

/* --- BOOK APPOINTMENT SPECIFIC --- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.custom-select, .custom-input {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 1px solid rgba(183, 154, 232, 0.4); 
    border-radius: 16px;
    padding: 16px 45px 16px 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}
.custom-select:focus, .custom-input:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-main);
    pointer-events: none;
}
