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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Main Container for Screens */
.screens-container {
    position: relative;
    width: 100%;
    height: 100vh;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.screens-container.scrolled {
    transform: translateY(-100vh);
}

/* Screen Wrapper */
.screen {
    width: 100%;
    height: 100vh;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
}

/* Bottom Fade Overlay - Professional Fade Out */
.bottom-fade {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    pointer-events: none;
    z-index: 900;
    overflow: hidden;
}

/* Main fade layer - smooth fade out with variable blur */
.bottom-fade::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(241, 245, 249, 0.85) 0%,
        rgba(241, 245, 249, 0.72) 8%,
        rgba(241, 245, 249, 0.56) 18%,
        rgba(241, 245, 249, 0.38) 32%,
        rgba(241, 245, 249, 0.22) 48%,
        rgba(241, 245, 249, 0.10) 65%,
        rgba(241, 245, 249, 0.04) 82%,
        rgba(241, 245, 249, 0.01) 92%,
        transparent 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    mask: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 5%, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.88) 30%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0.1) 95%, transparent 100%);
    -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 5%, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.88) 30%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0.1) 95%, transparent 100%);
    will-change: backdrop-filter, mask;
}

/* Subtle highlight layer for depth */
.bottom-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 25%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 75%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    will-change: backdrop-filter, mask;
}

/* Floating Logo - Two States: Full & Collapsed */
.logo {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 20px;
    border-radius: 30px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 4px 20px rgba(100, 116, 139, 0.12);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    height: 50px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
}

/* Collapsed State - Icon Only */
.logo.search-active {
    left: 90px;
    transform: translateX(0);
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* Logo Text - State 1: Visible */
.logo-text {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                width 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                margin 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
                max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    opacity: 1;
    width: auto;
    max-width: 200px;
    display: inline-block;
    transform: scaleX(1);
    transform-origin: left center;
    overflow: hidden;
    line-height: 1;
}

/* Logo Text - State 2: Hidden */
.logo.search-active .logo-text {
    opacity: 0;
    width: 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    transform: scaleX(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s,
                width 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s,
                max-width 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s,
                margin 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s,
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

/* Logo Icon - State 1: Normal Size */
.logo-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #64748b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                stroke-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Icon - State 2: Enlarged & Centered */
.logo.search-active .logo-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
    transform: scale(1.1);
}

/* Compass Button */
.compass-btn {
    position: fixed;
    top: 30px;
    left: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(100, 116, 139, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compass-btn:active {
    transform: scale(0.95);
}

.compass-btn.locked {
    background: rgba(96, 165, 250, 0.25);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.compass-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #60a5fa;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease-out;
}

.compass-btn.locked .compass-icon {
    stroke: #3b82f6;
}

/* Current City Display */
.current-city {
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 999;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: opacity 0.3s ease;
}

.city-loading {
    display: block;
}

.city-icon {
    display: none;
}

.city-text {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.current-city.loaded .city-text {
    color: #1e293b;
}

/* Search Button */
.search-btn {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(100, 116, 139, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                right 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                justify-content 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    padding: 0;
}

.search-btn:active:not(.expanded) {
    transform: scale(0.95);
}

.search-btn.expanded {
    width: calc(100% - 170px);
    height: 50px;
    right: 20px;
    border-radius: 30px;
    justify-content: flex-start;
    padding: 0 20px;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

/* Search Icon Container - Collapsed State */
.search-icon-container {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 1;
    visibility: visible;
}

.search-btn.expanded .search-icon-container {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    pointer-events: none;
}

.search-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #475569;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-btn.expanded .search-icon {
    width: 20px;
    height: 20px;
}

/* Search Bar - Expanded State */
.search-bar-container {
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease 0s;
    pointer-events: none;
    overflow: hidden;
    min-width: 0;
    flex: 1;
}

.search-btn.expanded .search-bar-container {
    opacity: 1;
    transition: opacity 0.3s ease 0.2s;
    pointer-events: auto;
}

.search-bar-container .search-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    color: #1e293b;
    font-size: 16px;
    flex: 1;
    min-width: 0;
    margin-left: 12px;
    margin-right: 0;
    font-family: inherit;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-input::placeholder {
    color: #94a3b8;
}

.close-search {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    stroke: #94a3b8;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-search:hover {
    stroke: #475569;
    transform: scale(1.1);
}

.close-search:active {
    transform: scale(0.9);
    stroke: #1e293b;
}

/* Floating Microphone Button */
.mic-button {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 85px;
    height: 85px;
    border-radius: 50px;
    background: rgba(241, 245, 249, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(203, 213, 225, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    touch-action: none;
    user-select: none;
}

.mic-button.dragging {
    transition: none;
}

.mic-button:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(100, 116, 139, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mic-button:active {
    transform: translateX(-50%) scale(0.95);
}

.mic-button.active {
    width: 240px;
    height: 60px;
    border-radius: 30px;
    background: rgba(147, 197, 253, 0.5);
    border-color: rgba(191, 219, 254, 0.8);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mic-button.active:hover {
    transform: translateX(-50%) scale(1.02);
}

.mic-icon {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #475569;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.mic-button.active .mic-icon {
    opacity: 0;
    transform: scale(0);
}

/* Wave Animation Container */
.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mic-button.active .wave-container {
    opacity: 1;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 20px;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    height: 28px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 20px;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    height: 16px;
    animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
    height: 24px;
    animation-delay: 0.5s;
}

.wave-bar:nth-child(7) {
    height: 18px;
    animation-delay: 0.6s;
}

.wave-bar:nth-child(8) {
    height: 22px;
    animation-delay: 0.7s;
}

.wave-bar:nth-child(9) {
    height: 14px;
    animation-delay: 0.8s;
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

/* Navigation Pulse Effect */
.nav-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #60a5fa;
    animation: navPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes navPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Direction Indicator */
.direction-indicator {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.direction-indicator.show {
    opacity: 1;
    animation: floatArrow 1.5s ease-in-out infinite;
}

.direction-arrow {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #60a5fa;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.4));
}

/* Account Screen Styles */
.account-screen {
    background: linear-gradient(180deg, #fef9f3 0%, #f5f0eb 50%, #faf8f5 100%);
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   EMOTIONAL ACCOUNT HEADER
   ============================================ */

.account-header-emotional {
    background: linear-gradient(135deg, #f8d7da 0%, #ffe5e8 30%, #ffe8cc 60%, #f0d9ff 100%);
    padding: 80px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.header-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(221, 160, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 218, 185, 0.1) 0%, transparent 60%);
    animation: gentlePulse 8s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.header-content {
    position: relative;
    z-index: 2;
}

.account-avatar-emotional {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-avatar-emotional img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #8b5a9f;
    box-shadow: 0 10px 40px rgba(139, 90, 159, 0.2), 
                0 0 0 4px rgba(255, 255, 255, 0.5),
                inset 0 2px 10px rgba(255, 255, 255, 0.8);
}

.avatar-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.greeting-text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(139, 90, 159, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.account-name-emotional {
    font-size: 32px;
    font-weight: 700;
    color: #6b4c7a;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.account-email-emotional {
    font-size: 14px;
    color: rgba(107, 76, 122, 0.75);
    margin-bottom: 12px;
    font-weight: 500;
}

.last-seen {
    font-size: 12px;
    color: rgba(107, 76, 122, 0.6);
    font-weight: 400;
    margin-top: 8px;
}

.account-content {
    padding: 20px;
}

.account-content-emotional {
    padding: 24px 20px 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.3);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(100, 116, 139, 0.08);
    transition: transform 0.2s ease;
}

.stat-card:active {
    transform: scale(0.98);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.account-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.3);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(100, 116, 139, 0.08);
    overflow: hidden;
}

.section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #64748b;
    padding: 20px 20px 12px;
}

.account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.15);
    transition: background 0.2s ease;
    cursor: pointer;
}

.account-item:active {
    background: rgba(96, 165, 250, 0.05);
}

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

.item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.item-icon-wrapper {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon {
    width: 20px;
    height: 20px;
    stroke: #60a5fa;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-label {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.item-sublabel {
    font-size: 12px;
    color: #94a3b8;
}

.item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-value {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.item-badge {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

.item-arrow {
    width: 18px;
    height: 18px;
    stroke: #cbd5e1;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.swipe-indicator {
    position: fixed;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    color: #94a3b8;
    font-size: 11px;
    z-index: 999;
    opacity: 0;
    animation: fadeInOut 3s ease-in-out infinite;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(203, 213, 225, 0.3);
}

.screens-container:not(.scrolled) .swipe-indicator {
    animation: fadeInOut 3s ease-in-out infinite;
}

.screens-container.scrolled .swipe-indicator {
    display: none;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

/* Leaflet customization */
.leaflet-container {
    background: #f1f5f9;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leaflet-tile-pane {
    transition: transform 0.2s ease-out;
}

/* Keep labels upright when map rotates */
.compass-locked .leaflet-marker-icon,
.compass-locked .leaflet-marker-shadow,
.compass-locked .leaflet-popup,
.compass-locked .leaflet-tooltip {
    transform-origin: center center;
}

/* Rotate tile layer only, not the entire container */
body.compass-locked .leaflet-tile-pane {
    transform-origin: 50% 50%;
}

body.compass-locked .leaflet-overlay-pane svg {
    transform-origin: 50% 50%;
}

.leaflet-control-attribution {
    display: none;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 20px rgba(100, 116, 139, 0.12) !important;
}

.leaflet-control-zoom a {
    background: rgba(248, 250, 252, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.3) !important;
    color: #475569 !important;
    font-weight: 600;
}

.leaflet-control-zoom a:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(203, 213, 225, 0.5) !important;
}

/* Search Results */
.search-results {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 500px;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.15);
    z-index: 1001;
    display: none;
    padding: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background: rgba(241, 245, 249, 0.8);
}

.search-result-item.no-results {
    cursor: default;
    color: #94a3b8;
    justify-content: center;
    padding: 20px;
}

.search-result-item.no-results:hover {
    background: transparent;
}

.result-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.result-icon svg {
    width: 20px;
    height: 20px;
    stroke: #3b82f6;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.result-name {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-address {
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Search Marker */
.search-marker {
    background: transparent !important;
    border: none !important;
}

/* Custom scrollbar for search results */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.6);
}

/* Rides Search */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.rides-search-container {
    position: relative;
    flex: 1;
    max-width: 250px;
}

.rides-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: #94a3b8;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    z-index: 1;
}

.rides-search-input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(203, 213, 225, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.2s ease;
}

.rides-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.rides-search-input::placeholder {
    color: #94a3b8;
}

.rides-list .account-item {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.rides-list .account-item.hidden {
    display: none;
}

/* ============================================
   AUTHENTICATION FORMS
   ============================================ */

.auth-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.5);
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    font-family: inherit;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-group-checkbox {
    margin-top: 20px;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #60a5fa;
}

.checkbox-text {
    font-size: 14px;
    color: #475569;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-block {
    width: 100%;
    display: block;
}

.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

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

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.auth-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(203, 213, 225, 0.15);
}

.auth-footer p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.auth-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #3b82f6;
}

/* ============================================
   EMOTIONAL ACCOUNT PAGE COMPONENTS
   ============================================ */

.account-content-emotional {
    padding: 24px 20px 30px;
}

/* Journey Section */
.journey-section {
    margin-bottom: 24px;
}

.journey-title {
    font-size: 20px;
    font-weight: 700;
    color: #6b4c7a;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 14px;
}

.journey-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 228, 225, 0.5);
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(139, 90, 159, 0.08),
                0 2px 8px rgba(255, 182, 193, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.journey-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb6c1, #e0b0ff, #ffc0cb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(139, 90, 159, 0.12),
                0 4px 12px rgba(255, 182, 193, 0.15);
    border-color: rgba(255, 182, 193, 0.7);
}

.journey-stat:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.journey-stat:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.rides-icon {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.25), rgba(255, 192, 203, 0.15));
    color: #d63384;
}

.miles-icon {
    background: linear-gradient(135deg, rgba(221, 160, 221, 0.25), rgba(238, 130, 238, 0.15));
    color: #9333ea;
}

.rating-icon {
    background: linear-gradient(135deg, rgba(255, 218, 185, 0.25), rgba(255, 228, 196, 0.15));
    color: #ea580c;
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #6b4c7a;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-label-emotional {
    font-size: 12px;
    color: rgba(107, 76, 122, 0.7);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.2px;
}

/* Membership Card */
.membership-card {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(221, 160, 221, 0.1));
    border: 1.5px solid rgba(255, 192, 203, 0.4);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(139, 90, 159, 0.06);
}

.membership-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.membership-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 90, 159, 0.1);
}

.membership-icon svg {
    width: 28px;
    height: 28px;
    stroke: #8b5a9f;
    stroke-width: 2;
}

.membership-text {
    flex: 1;
}

.membership-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(107, 76, 122, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.membership-date {
    font-size: 16px;
    font-weight: 700;
    color: #6b4c7a;
    letter-spacing: -0.2px;
}

/* Account Actions */
.account-actions {
    margin-top: 8px;
}

.action-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #6b4c7a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.action-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 228, 225, 0.4);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(139, 90, 159, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 90, 159, 0.1);
    border-color: rgba(255, 182, 193, 0.6);
}

.action-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    gap: 16px;
}

.action-item:active {
    background: rgba(255, 182, 193, 0.08);
}

.action-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(221, 160, 221, 0.15));
    transition: transform 0.3s ease;
}

.action-card:hover .action-icon-wrapper {
    transform: scale(1.05) rotate(-3deg);
}

.action-icon {
    width: 24px;
    height: 24px;
    stroke: #8b5a9f;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.subscription-icon {
    background: linear-gradient(135deg, rgba(255, 218, 185, 0.25), rgba(255, 228, 196, 0.2));
}

.logout-icon {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.15));
}

.logout-action {
    border-top: 1.5px solid rgba(255, 228, 225, 0.3);
    margin-top: 0;
}

.action-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.action-label {
    font-size: 16px;
    font-weight: 600;
    color: #6b4c7a;
    letter-spacing: -0.2px;
}

.action-sublabel {
    font-size: 13px;
    color: rgba(107, 76, 122, 0.65);
    font-weight: 400;
    line-height: 1.4;
}

.action-arrow {
    width: 20px;
    height: 20px;
    stroke: rgba(139, 90, 159, 0.4);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.action-item:hover .action-arrow {
    transform: translateX(4px);
    stroke: #8b5a9f;
}

.action-badge {
    background: linear-gradient(135deg, #ffb6c1, #e0b0ff);
    color: #6b4c7a;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(139, 90, 159, 0.2);
    flex-shrink: 0;
}

/* ============================================
   VOICE RECORDING STATES
   ============================================ */

.mic-button.recording {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 0 0 4px rgba(239, 68, 68, 0.2);
    animation: recordingPulse 2s ease-in-out infinite;
}

@keyframes recordingPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.8),
                    0 0 0 4px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.6), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.8),
                    0 0 0 8px rgba(239, 68, 68, 0.1);
    }
}

.mic-button.recording .mic-icon {
    stroke: #ef4444;
    animation: micRecording 1s ease-in-out infinite;
}

@keyframes micRecording {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mic-button.processing {
    background: rgba(147, 197, 253, 0.4);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.mic-button.processing .mic-icon {
    stroke: #60a5fa;
    animation: processingSpin 1s linear infinite;
}

@keyframes processingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   ACTIVE RIDE STATE UI
   ============================================ */

.active-ride-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
}

.active-ride-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(248, 215, 218, 0.95) 0%, 
        rgba(255, 229, 232, 0.95) 30%, 
        rgba(255, 232, 204, 0.95) 60%, 
        rgba(240, 217, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.active-ride-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 20px 30px;
    max-width: 500px;
    margin: 0 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.active-ride-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.ride-status-indicator {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.2);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

.status-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.3), 
                0 0 0 4px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.status-icon svg {
    width: 36px;
    height: 36px;
    stroke: #60a5fa;
    stroke-width: 2.5;
}

.ride-status-title {
    font-size: 28px;
    font-weight: 700;
    color: #6b4c7a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.ride-status-subtitle {
    font-size: 16px;
    color: rgba(107, 76, 122, 0.7);
    font-weight: 400;
}

.active-ride-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.voice-note-player {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.4);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.12);
}

.voice-note-waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 50px;
}

.waveform-bar {
    flex: 1;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 3px;
    min-height: 8px;
    animation: waveformAnimation 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { animation-delay: 0s; height: 20%; }
.waveform-bar:nth-child(2) { animation-delay: 0.15s; height: 60%; }
.waveform-bar:nth-child(3) { animation-delay: 0.3s; height: 100%; }
.waveform-bar:nth-child(4) { animation-delay: 0.45s; height: 80%; }
.waveform-bar:nth-child(5) { animation-delay: 0.6s; height: 40%; }
.waveform-bar:nth-child(6) { animation-delay: 0.75s; height: 70%; }
.waveform-bar:nth-child(7) { animation-delay: 0.9s; height: 50%; }
.waveform-bar:nth-child(8) { animation-delay: 1.05s; height: 90%; }

@keyframes waveformAnimation {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.play-voice-note-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(96, 165, 250, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-voice-note-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.5);
}

.play-voice-note-btn:active {
    transform: scale(0.95);
}

.play-voice-note-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 2px;
}

.play-voice-note-btn.playing {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: playingPulse 1s ease-in-out infinite;
}

@keyframes playingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.voice-note-duration {
    font-size: 14px;
    color: rgba(107, 76, 122, 0.7);
    font-weight: 500;
    min-width: 40px;
    text-align: right;
}

.ride-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.4);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(100, 116, 139, 0.12);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
}

.info-label {
    font-size: 14px;
    color: rgba(107, 76, 122, 0.7);
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: #6b4c7a;
    font-weight: 600;
}

.info-value.status-pending {
    color: #f59e0b;
}

.info-value.status-accepted {
    color: #10b981;
}

.info-value.status-driver_en_route {
    color: #3b82f6;
}

.info-value.status-arrived {
    color: #8b5cf6;
}

.info-value.status-in_progress {
    color: #06b6d4;
}

.active-ride-footer {
    padding-top: 20px;
}

.cancel-ride-btn {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    color: #ef4444;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(100, 116, 139, 0.1);
}

.cancel-ride-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

.cancel-ride-btn:active {
    transform: translateY(0);
}

