@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Luxe Color Palette — White & Pista Green */
    --cr-bg: #F7FAF6;
    --cr-surface: #FFFFFF;
    --cr-surface-light: #FFFFFF;
    --cr-card-glass: #FFFFFF;
    
    --cr-primary: #93C572;
    --cr-primary-pista: #93C572;
    --cr-primary-hover: #84B067;
    
    --cr-text-main: #000000;
    --cr-text-muted: #1C2B23;
    
    --cr-accent-blue: #2563EB;
    --cr-accent-green: #93C572;
    --cr-accent-light: #EBF6E9;
    --cr-accent-red: #FECACA;
    --cr-danger: #DC2626;

    /* Border & Radii */
    --cr-border: rgba(147, 197, 114, 0.25);
    --cr-border-light: rgba(147, 197, 114, 0.3);
    
    --cr-radius-sm: 8px;
    --cr-radius-md: 16px;
    --cr-radius-lg: 24px;
    --cr-radius-xl: 32px;
    --cr-radius-pill: 9999px;

    /* Shadows */
    --cr-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
    --cr-shadow-md: 0 8px 24px rgba(147, 197, 114, 0.15);
    --cr-shadow-floating: 0 12px 32px rgba(0, 0, 0, 0.10);
    
    /* Transitions */
    --cr-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--cr-bg);
    color: var(--cr-text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Base Inputs */
.cr-input {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--cr-text-main);
    outline: none;
}
.cr-input::placeholder {
    color: var(--cr-text-muted);
    font-weight: 400;
}
.cr-input-group {
    background: var(--cr-surface-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--cr-radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: var(--cr-transition);
}
.cr-input-group:focus-within {
    border-color: var(--cr-primary);
    box-shadow: 0 0 0 2px rgba(0, 107, 58, 0.1);
}

/* Timeline Layout for Pickup/Drop */
.timeline-inputs {
    position: relative;
    padding-left: 24px;
}
.timeline-inputs::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--cr-border-light);
    z-index: 1;
}
.timeline-dot {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cr-surface-light);
    border: 2px solid var(--cr-text-muted);
    z-index: 2;
}
.timeline-dot.pickup { top: 16px; border-color: var(--cr-primary); }
.timeline-dot.drop { bottom: 16px; border-color: var(--cr-accent-blue); }

.timeline-row { margin-bottom: 16px; position: relative; }
.timeline-row:last-child { margin-bottom: 0; }
.timeline-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: var(--cr-text-muted); letter-spacing: 0.5px; margin-bottom: 4px; }
.timeline-field { font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--cr-border-light); padding-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.timeline-field input { border: none; background: transparent; flex: 1; outline: none; font-weight: 500; font-size: 1rem; color: var(--cr-text-main); }
.timeline-row:last-child .timeline-field { border-bottom: none; padding-bottom: 0; }

.mic-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--cr-accent-light); color: var(--cr-primary); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; }

/* Action Pills */
.action-pills { display: flex; gap: 10px; margin: 16px 0; overflow-x: auto; padding-bottom: 4px; }
.action-pills::-webkit-scrollbar { display: none; }
.action-pill { padding: 10px 16px; background: var(--cr-bg); border-radius: var(--cr-radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--cr-text-main); display: flex; align-items: center; gap: 8px; border: none; white-space: nowrap; cursor: pointer; }

/* Buttons */
.cr-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--cr-radius-pill);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cr-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cr-btn-primary {
    background: var(--cr-primary);
    color: white;
}
.cr-btn-primary:hover {
    background: var(--cr-primary-hover);
}
.cr-btn-light {
    background: var(--cr-bg);
    color: var(--cr-primary);
}

/* Modals & Bottom Sheets */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0,0,0,0.4);
    display: none;
    align-items: flex-end;
}
.modal-overlay.open {
    display: flex;
    animation: fadeIn 0.2s;
}
.modal-content {
    background: var(--cr-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--cr-radius-xl) var(--cr-radius-xl) 0 0;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
}
.modal-drag-handle { width: 40px; height: 4px; background: var(--cr-border-light); border-radius: 2px; margin: 12px auto; }

/* Vehicle Cards (Luxe style overrides for app.js injected classes) */
.vc-card {
    background: rgba(245, 248, 244, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--cr-radius-lg);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--cr-transition);
    position: relative;
}
.vc-card:hover { transform: translateY(-2px); box-shadow: var(--cr-shadow-md); }
.vc-card.selected {
    border-color: var(--cr-primary);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.vc-card.selected::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--cr-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.vc-img { width: 80px; height: 50px; object-fit: contain; }
.vc-title { font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.vc-price { font-weight: 700; font-size: 1.1rem; color: var(--cr-primary); margin-left: auto; }
.vc-meta { font-size: 0.85rem; color: var(--cr-text-muted); display: flex; align-items: center; gap: 12px; }

/* Styles for dynamically created elements in app.js */
.vc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vc-icon svg {
    width: 100%;
    height: 100%;
}
.vc-name {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.vc-fare {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cr-primary);
    margin-left: auto;
    white-space: nowrap;
}

/* Fix for long route text */
#vm-route-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    word-break: break-word;
}

.luxe-vehicle-card {

    background: var(--cr-bg);
    border-radius: var(--cr-radius-lg);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--cr-transition);
    position: relative;
}
.luxe-vehicle-card.selected {
    border-color: var(--cr-primary);
    background: white;
}
.luxe-check {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--cr-primary);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.luxe-vehicle-card.selected .luxe-check { display: flex; }
.lvc-img { width: 80px; height: 50px; object-fit: contain; }
.lvc-info { flex: 1; }
.lvc-title { font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.lvc-badge { font-size: 0.6rem; padding: 2px 6px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
.lvc-badge.recommended { background: var(--cr-primary); color: white; }
.lvc-badge.eco { background: var(--cr-accent-blue); color: white; }
.lvc-meta { font-size: 0.85rem; color: var(--cr-text-muted); display: flex; align-items: center; gap: 12px; }
.lvc-price { font-weight: 700; font-size: 1.1rem; color: var(--cr-primary); }

.sticky-payment-panel {
    background: var(--cr-surface);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--cr-border-light);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.02);
}

/* Floating Bottom Navigation */
.cr-floating-nav-wrap {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}
.cr-floating-nav {
    background: var(--cr-surface-light);
    border-radius: var(--cr-radius-pill);
    padding: 8px 16px;
    display: flex;
    gap: 16px;
    box-shadow: var(--cr-shadow-floating);
    pointer-events: auto;
    border: 1px solid var(--cr-border-light);
}
.cr-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--cr-text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    transition: var(--cr-transition);
}
.cr-nav-item.active {
    background: var(--cr-primary);
    color: white;
}
.cr-nav-item svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cr-nav-item.active svg { stroke-width: 2.5; }

/* Active Ride Sheet */
.active-ride-sheet {
    background: var(--cr-surface);
    border-radius: var(--cr-radius-xl) var(--cr-radius-xl) 0 0;
    padding: 24px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
}
.ar-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.ar-eta { font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.ar-status { font-size: 0.85rem; font-weight: 700; color: var(--cr-primary); text-transform: uppercase; }
.ar-otp-badge { background: var(--cr-primary); color: white; padding: 12px 20px; border-radius: var(--cr-radius-pill); text-align: center; }
.ar-otp-badge .otp-label { font-size: 0.65rem; font-weight: 800; opacity: 0.9; margin-bottom: 2px; }
.ar-otp-badge .otp-val { font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; }

.driver-card-luxe {
    background: var(--cr-bg);
    border-radius: var(--cr-radius-pill);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.dc-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.dc-rating { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); background: white; font-size: 0.7rem; font-weight: 700; padding: 2px 6px; border-radius: 10px; box-shadow: var(--cr-shadow-sm); display: flex; align-items: center; gap: 2px; }
.dc-info { flex: 1; }
.dc-plate { font-weight: 700; font-size: 1rem; }

.ar-actions { display: flex; justify-content: space-between; margin-bottom: 24px; padding: 0 12px; }
.ar-action-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; border: none; background: transparent; cursor: pointer; }
.ar-action-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; }
.ar-action-icon.call { background: var(--cr-accent-blue); }
.ar-action-icon.chat { background: var(--cr-accent-blue); }
.ar-action-icon.share { background: var(--cr-bg); color: var(--cr-text-main); }
.ar-action-icon.sos { background: var(--cr-accent-red); color: var(--cr-danger); }
.ar-action-label { font-size: 0.75rem; font-weight: 600; color: var(--cr-text-main); }

.cancel-trip-btn { background: var(--cr-bg); color: var(--cr-danger); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Map Utilities */
.map-pill { background: white; padding: 8px 16px; border-radius: var(--cr-radius-pill); box-shadow: var(--cr-shadow-md); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.map-pill.gps { background: white; color: var(--cr-text-main); font-weight: 700; font-size: 0.85rem; padding: 8px 16px; }
.map-pill.gps::before { content: '●'; color: var(--cr-primary); }

.map-tools { position: absolute; right: 16px; top: 120px; display: flex; flex-direction: column; gap: 12px; z-index: 10; }
.map-tool-btn { width: 44px; height: 44px; border-radius: 50%; background: white; box-shadow: var(--cr-shadow-md); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; color: var(--cr-text-main); }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Utility */
.hidden { display: none !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Map Background */
#map-background, #mission-map {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--cr-bg); /* Fallback before map loads */
}

/* Fix leaflet controls z-index */
.leaflet-control-container { z-index: 5 !important; }

/* Dashboard Specific Layout */
.luxe-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.luxe-header-card {
    background: var(--cr-surface);
    border-radius: var(--cr-radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--cr-shadow-sm);
}

/* circular progress loader */
.loader-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--cr-bg);
    border-top-color: var(--cr-primary);
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

/* Splash Screen hiding utility */
.splash-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ==========================================================================
   CUSTOMER ACTIVITY NOTIFICATION SYSTEM STYLES
   ========================================================================== */

/* Toast Container */
.cr-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100vw - 40px);
    pointer-events: none;
}

/* Toast Card */
.cr-toast-card {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cr-toast-card.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Toast Status Variants */
.cr-toast-pending { border-left: 5px solid #F59E0B; }
.cr-toast-assigned { border-left: 5px solid #3B82F6; }
.cr-toast-pickup { border-left: 5px solid #8B5CF6; }
.cr-toast-ongoing { border-left: 5px solid #10B981; }
.cr-toast-completed { border-left: 5px solid #059669; }
.cr-toast-cancelled { border-left: 5px solid #EF4444; }
.cr-toast-info { border-left: 5px solid #6B7280; }

.cr-toast-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.cr-toast-content {
    flex: 1;
    min-width: 0;
}

.cr-toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.cr-toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1F2937;
}

.cr-toast-time {
    font-size: 0.72rem;
    color: #9CA3AF;
    font-weight: 500;
}

.cr-toast-message {
    font-size: 0.85rem;
    color: #4B5563;
    line-height: 1.4;
    word-break: break-word;
}

.cr-toast-close {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin-left: 4px;
    transition: color 0.2s;
}

.cr-toast-close:hover {
    color: #1F2937;
}

/* Notification Bell & Badge */
.cr-notif-bell-btn {
    position: relative;
    background: var(--cr-surface, #fff);
    border: 1px solid var(--cr-border-light, #e5e7eb);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.cr-notif-bell-btn:hover {
    transform: scale(1.05);
    border-color: var(--cr-primary, #B71C1C);
}

.cr-notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    height: 18px;
    min-width: 18px;
    padding: 0 5px;
    border-radius: 99px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.4);
}

/* Notification Drawer Slide-over */
.cr-notif-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 350px;
    max-width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cr-notif-drawer.active {
    right: 0;
}

.cr-notif-drawer-header {
    padding: 16px 20px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9FAFB;
}

.cr-notif-clear-btn {
    background: transparent;
    border: none;
    color: #6B7280;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.cr-notif-clear-btn:hover {
    color: #EF4444;
}

.cr-notif-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
}

.cr-notif-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.cr-notif-empty {
    padding: 60px 20px;
    text-align: center;
}

.cr-notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    transition: background 0.2s;
}

.cr-notif-item.unread {
    background: #EFF6FF;
    border-color: #BFDBFE;
}

.cr-notif-item-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    padding-top: 2px;
}

.cr-notif-item-body {
    flex: 1;
    min-width: 0;
}

.cr-notif-item-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1F2937;
    margin-bottom: 2px;
}

.cr-notif-item-msg {
    font-size: 0.8rem;
    color: #4B5563;
    line-height: 1.35;
    margin-bottom: 4px;
}

.cr-notif-item-time {
    font-size: 0.7rem;
    color: #9CA3AF;
    font-weight: 500;
}

/* Google Play Console Location Accuracy GPS Popup Modal */
.gps-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: gpsModalFadeIn 0.25s ease-out;
}

@keyframes gpsModalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.gps-modal-card {
    background: #EBEFF8;
    border-radius: 28px;
    max-width: 440px;
    width: 100%;
    padding: 28px 24px 24px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    color: #1A2B4C;
    font-family: 'Inter', -apple-system, Roboto, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
}

.gps-modal-title {
    font-family: Georgia, 'Times New Roman', serif, 'Inter';
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: #162440;
    margin-bottom: 12px;
}

.gps-modal-subtitle {
    font-style: italic;
    font-size: 0.95rem;
    color: #2D3E60;
    margin-bottom: 20px;
}

.gps-setting-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.gps-setting-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #21355A;
}

.gps-setting-text {
    font-size: 0.88rem;
    line-height: 1.48;
    color: #253656;
}

.gps-setting-text strong {
    font-style: italic;
    color: #111E36;
    font-size: 0.95rem;
}

.gps-setting-text p {
    font-style: italic;
    margin: 0;
}

.gps-modal-footer-note {
    font-size: 0.82rem;
    color: #3B4D70;
    margin-top: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.gps-modal-footer-note a {
    color: #1E3459;
    text-decoration: underline;
    font-weight: 500;
}

.gps-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.gps-btn-secondary {
    background: transparent;
    border: 1.5px solid #2B4470;
    color: #2B4470;
    border-radius: 9999px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.gps-btn-secondary:hover {
    background: rgba(43, 68, 112, 0.08);
}

.gps-btn-primary {
    background: #25406b;
    border: none;
    color: #FFFFFF;
    border-radius: 9999px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 64, 107, 0.3);
    transition: all 0.2s;
}

.gps-btn-primary:hover {
    background: #1B3154;
    transform: translateY(-1px);
}



.bk-tab { 
    flex: 1; 
    text-align: center; 
    padding: 10px 16px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    color: var(--cr-text-muted, #666); 
    cursor: pointer; 
    border-radius: 8px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
} 
.bk-tab:hover { 
    background: rgba(0,0,0,0.04); 
} 
.bk-tab.active { 
    background: var(--cr-surface-light, #fff); 
    color: var(--cr-primary, #93C572); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
}
