/* COW Mobile Web App - Exact Replica Styles */
/* Based on React Native mobile app design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* COW Brand Colors - Exact from mobile app */
    --primary: #22d060;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray50: #f9fafb;
    --gray100: #f3f4f6;
    --gray200: #e5e7eb;
    --gray300: #d1d5db;
    --gray400: #9ca3af;
    --gray500: #6b7280;
    --gray600: #4b5563;
    --gray700: #374151;
    --gray800: #1f2937;
    --gray900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
    
    /* Background Colors */
    --background: #ffffff;
    --surface: #f8fafc;
    --surface-light: #F8F9FA;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--gray900);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Screen Management */
.screen {
    display: none;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.screen.active {
    display: block;
}

/* Splash Screen */
#splashScreen {
    background: var(--gray100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.splash-background {
    background-image: url('assets/images/Pattern.png');
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.splash-content-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.splash-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.splash-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.splash-tagline-wrapper {
    margin-top: -60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-tagline {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
}

.splash-tagline-dash,
.splash-tagline-gray {
    color: var(--gray500);
}

.splash-tagline-green {
    color: var(--primary);
    font-weight: 500;
}

/* Landing Screen */
.landing-container {
    min-height: 100vh;
    background: var(--white);
    position: relative;
}

.landing-grey-container {
    background: var(--gray100);
    height: auto;
    min-height: auto;
    margin: 1px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    padding: 20px;
    padding-bottom: 10px;
}

.landing-van-image-container {
    position: absolute;
    right: 23px; /* Moved 3px right */
    top: -10px; /* Moved another 10px up */
    width: 150px;
    height: 150px;
    z-index: 1;
}

.landing-van-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landing-welcome-text-container {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    margin-top: 20px;
    padding-bottom: 20px;
}

.landing-welcome-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.landing-welcome-back-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.landing-instruction-text {
    font-size: 14px;
    color: var(--black);
    line-height: 18px;
    width: 100%;
    margin-bottom: 0;
}

.landing-white-capsule {
    background: var(--white);
    margin: 10px 8px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 20px 40px;
    min-height: 45vh;
}

.landing-tab-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 24px;
    margin-top: 10px;
    background: var(--gray200);
    border-radius: 25px;
    padding: 4px;
}

.landing-tab-button {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 21px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray500);
    cursor: pointer;
    transition: all 0.2s;
}

.landing-tab-button.active {
    background: var(--white);
    color: var(--gray800);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.landing-input-container {
    margin-bottom: 24px;
}

/* Signup fields container - add margin to create consistent spacing */
#signupFields.landing-input-container {
    margin-bottom: 0; /* Remove container margin, let email input handle spacing */
}

.landing-name-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 12px; /* Reduced spacing above Email Address */
    gap: 16px;
}

.landing-input {
    width: 100%;
    background: var(--gray50);
    border: 1px solid var(--gray200);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 16px;
    font-family: var(--font-family);
}

/* Email input in signup fields should have same margin-bottom as name-row for consistent spacing */
#signupFields .landing-input {
    margin-bottom: 12px; /* Reduced to match spacing above Email Address */
}

.landing-name-row .landing-input {
    width: 48%;
    margin-bottom: 0;
}

.landing-input:focus {
    outline: none;
    border-color: var(--primary);
}

.landing-send-otp-button {
    width: 100%;
    background: var(--primary);
    border-radius: 8px;
    padding: 16px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    margin-bottom: 24px;
    transition: background 0.2s;
}

.landing-send-otp-button:active {
    background: var(--primary-dark);
}

.landing-send-otp-button:disabled {
    background: var(--gray100);
    color: var(--gray400);
    cursor: not-allowed;
}

.landing-otp-section {
    margin-bottom: 24px;
}

.landing-otp-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 8px;
}

.landing-otp-subtitle {
    font-size: 14px;
    color: var(--gray500);
    text-align: center;
    margin-bottom: 32px;
    line-height: 20px;
}

.landing-otp-timer {
    font-size: 14px;
    color: var(--error);
    text-align: center;
    margin-top: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.landing-otp-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 10px;
}

.landing-otp-input {
    width: 45px;
    height: 55px;
    border: 1px solid var(--gray200);
    border-radius: 8px;
    background: var(--gray50);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.landing-otp-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.landing-verify-button {
    width: 100%;
    background: var(--primary);
    border-radius: 8px;
    padding: 16px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    margin-bottom: 16px;
}

.landing-verify-button:active {
    background: var(--primary-dark);
}

.landing-verify-button:disabled {
    background: var(--gray100);
    color: var(--gray400);
    cursor: not-allowed;
}

.landing-resend-button {
    width: 100%;
    background: transparent;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--gray200);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray500);
    cursor: pointer;
}

.landing-resend-button:active {
    background: var(--gray100);
}

.landing-resend-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.landing-footer-text {
    font-size: 12px;
    color: var(--gray400);
    text-align: center;
    line-height: 16px;
}

/* Home Screen */
.home-header {
    background: var(--surface);
    height: 60px;
    padding-left: 0;
    padding-right: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.home-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.home-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.home-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.home-header-icon {
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.home-notification-icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--error);
    border-radius: 10px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    padding: 0 4px;
}

.home-scroll-content {
    flex: 1;
    padding-bottom: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.home-greeting-section {
    background: var(--white);
    padding: 10px 20px 8px 20px;
    border-bottom: none;
    position: relative;
    margin-top: -6px;
}

.home-greeting-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 3px;
}

.home-address-container {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
    cursor: pointer;
}

.home-address-main {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.home-address-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray700);
    line-height: 18px;
}

.home-address-dropdown {
    font-size: 12px;
    color: var(--gray600);
    margin-left: 6px;
}

.home-address-details {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray700);
    line-height: 18px;
    margin-top: 1px;
    padding-left: 0;
}

.home-address-dropdown-list {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    min-width: 250px;
    max-width: 90%;
    left: 0;
    top: 100%;
}

.home-address-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray200);
    font-size: 14px;
    color: var(--gray900);
    transition: background-color 0.2s;
}

.home-address-dropdown-item:last-child {
    border-bottom: none;
}

.home-address-dropdown-item:hover {
    background-color: var(--gray100);
}

.home-address-dropdown-item.selected {
    background-color: var(--gray100);
    color: var(--gray900);
    font-weight: 600;
}

.home-section {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 8px;
    margin: 3px 12px 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

.home-section-title {
    color: var(--gray800);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 4px;
}

/* Section Header with Flip Button */
.home-section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 0 4px;
}

.home-section-header .home-section-title {
    margin-bottom: 0;
    padding: 0;
}

.home-flip-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.home-flip-button:hover {
    background: var(--primary-dark);
}

.home-flip-icon {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* Section Header Right Container */
.home-section-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

/* Subscribe Button */
.home-subscribe-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.home-subscribe-button:hover {
    background: var(--primary-dark);
}

.home-subscribe-button-active {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 16px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: default;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Single Car Container */
.home-car-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-car-card {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

/* Single Subscription Container */
.home-subscription-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-subscription-card {
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    width: 100%;
}

.home-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin: 0 -4px;
    padding: 0 4px;
}

.home-carousel-content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-bottom: 4px;
}

.home-carousel-item {
    min-width: 85%;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.home-carousel-indicators {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    gap: 6px;
}

.home-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--gray300);
    transition: all 0.3s;
}

.home-carousel-indicator.active {
    background: var(--primary);
    width: 24px;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 12px;
    padding: 8px;
    margin-right: 10px;
    width: 85vw;
    border: 1px solid #E9ECEF;
}

.booking-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.booking-card-car-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

.booking-card-car-logo {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: var(--gray200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.booking-card-car-text {
    flex: 1;
    padding-left: 9px;
}

.booking-card-id {
    color: var(--gray600);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.booking-card-car-number {
    color: var(--gray900);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.booking-card-status {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-card-battery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 25px;
    width: 120px;
}

.booking-card-battery-label {
    color: var(--gray600);
    font-size: 14.58px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-align: center;
}

.booking-card-battery-percentage {
    color: var(--gray900);
    font-size: 16px;
    font-weight: 700;
}

.booking-card-time-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 0 4px;
}

.booking-card-time-slot,
.booking-card-date-slot {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    background: var(--gray100);
    border-radius: 8px;
}

.booking-card-time-slot {
    margin-right: 8px;
}

.booking-card-date-slot {
    margin-left: 8px;
}

.booking-card-label {
    color: var(--gray600);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-card-value {
    color: var(--gray900);
    font-size: 16px;
    font-weight: 700;
}

.booking-card-address {
    margin-bottom: 8px;
    padding: 0 4px;
}

.booking-card-address-label {
    color: var(--gray600);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-card-address-value {
    color: var(--gray900);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.booking-card-address-details {
    color: var(--gray600);
    font-size: 12px;
    font-weight: 500;
}

/* Home Booking Card - Mobile App Style (1:1 Match) */
.home-booking-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 10px;
    margin-right: 12px;
    width: 85vw;
    max-width: 340px;
    border: 1px solid #E9ECEF;
}

.home-booking-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.home-booking-car-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

.home-booking-car-text {
    flex: 1;
    padding-left: 4px;
}

.home-booking-car-label {
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
}

.home-booking-car-number {
    color: var(--gray900);
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

.home-booking-status-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.home-booking-status-badge {
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
}

.home-booking-status-badge.scheduled {
    background: var(--primary, #10B981);
    color: var(--white, #FFFFFF);
}

.home-booking-status-badge.rescheduled {
    background: #FEF3C7;
    color: #D97706;
}

.home-booking-status-badge.completed {
    background: var(--gray300);
    color: var(--gray600);
}

.home-booking-status-badge.cancelled {
    background: #FEE2E2;
    color: #EF4444;
}

.home-booking-id {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 4px;
}

.home-booking-details-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-left: 4px;
}

.home-booking-label {
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
}

.home-booking-value {
    color: var(--gray900);
    font-size: 15px;
    font-weight: 600;
}

.home-booking-address-value {
    color: var(--gray900);
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    text-align: left;
    line-height: 18px;
}

/* Home Booking Container - Single Card */
.home-booking-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-booking-card-single {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    border: 1px solid #E9ECEF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Home Booking Empty State */
.home-booking-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    width: 100%;
    padding: 16px;
}

.home-booking-empty-text {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.home-booking-empty-subtext {
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-top: 4px;
}

/* Car Card */
.car-card {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 8px;
    margin-right: 10px;
    width: 85vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

.car-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.car-card-logo-container {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background: var(--white);
    border: 2px solid var(--gray200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.car-card-brand-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.car-card-default-icon {
    font-size: 40px;
}

.car-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-card-label {
    color: var(--gray500);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}

.car-card-value {
    color: var(--gray900);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.car-card-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 6px;
}

.car-card-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-card-col .car-card-label {
    margin-bottom: 2px;
}

.car-card-col .car-card-value {
    margin-bottom: 0;
}

/* Subscription Card */
.subscription-card {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 8px;
    margin-right: 10px;
    width: 85vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

.subscription-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.subscription-card-header .subscription-card-plan-name {
    margin-top: 0;
    flex: 1;
}

.subscription-card-title {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    flex: 1;
}

.subscription-card-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 12px;
}

.subscription-card-start-date {
    color: var(--gray600);
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    margin-bottom: 8px;
}

.subscription-card-price {
    color: var(--gray600);
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}

.subscription-card-plan-name {
    color: var(--gray900);
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
}

.subscription-card-plan-name.highlight {
    color: var(--primary);
}

.subscription-card-details {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #4F545C;
}

.subscription-card-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscription-card-detail-label {
    color: var(--gray500);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.subscription-card-detail-value {
    color: var(--gray900);
    font-size: 15px;
    font-weight: 600;
}

/* Welcome Section */
.home-welcome-section {
    padding: 20px;
    background: var(--white);
}

.home-welcome-banner {
    background: transparent;
    padding: 24px;
    text-align: center;
}

.home-welcome-text {
    font-size: 26.4px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    color: var(--gray900);
}

.home-welcome-image {
    width: 96vw;
    height: 48vw;
    max-width: 448px;
    max-height: 224px;
    object-fit: contain;
    margin-top: -30px;
    margin-bottom: -30px;
}

.home-waitlist-section {
    padding: 20px;
    background: var(--white);
    margin-top: -50px;
}

.home-waitlist-message {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray700);
    text-align: center;
    margin-bottom: 8px;
}

.home-waitlist-subtext {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray600);
    text-align: center;
    margin-bottom: 16px;
}

.home-waitlist-button {
    background: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-waitlist-button:active {
    background: var(--primary-dark);
}

/* Add Address Section */
.home-add-address-section {
    padding: 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.home-add-address-section .home-welcome-text {
    margin-bottom: 24px;
}

.home-add-address-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /* Ensure solid white background, no transparency patterns */
    background-color: #ffffff !important;
    background-image: none !important;
}

.home-add-address-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 0;
}

.home-add-address-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    /* Ensure image blends with white background */
    background-color: #ffffff !important;
    background-image: none !important;
    /* Prevent any transparency artifacts */
    mix-blend-mode: normal;
    /* Force white background behind image */
    background: #ffffff;
}

.home-add-address-message {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray700);
    text-align: center;
    margin-bottom: 24px;
}

.home-add-address-button {
    background: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-add-address-button:active {
    background: var(--primary-dark);
}

/* Add Car Section */
.home-add-car-section {
    padding: 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.home-add-car-section .home-welcome-text {
    margin-bottom: 24px;
}

.home-add-car-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /* Ensure solid white background, no transparency patterns */
    background-color: #ffffff !important;
    background-image: none !important;
}

.home-add-car-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 0;
}

.home-add-car-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    /* Ensure image blends with white background */
    background-color: #ffffff !important;
    background-image: none !important;
    /* Prevent any transparency artifacts */
    mix-blend-mode: normal;
    /* Force white background behind image */
    background: #ffffff;
}

.home-add-car-message {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray700);
    text-align: center;
    margin-bottom: 24px;
}

.home-add-car-button {
    background: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-add-car-button:active {
    background: var(--primary-dark);
}

/* Home Footer */
.home-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding-top: 8px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 50px;
    box-shadow: none;
    z-index: 100;
}

.home-footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
    min-width: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.home-footer-icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.home-footer-icon-text {
    font-size: 10px;
    font-weight: 500;
    color: var(--gray600);
    margin-top: 2px;
    text-align: center;
}

.home-footer-rectangle {
    width: 123px;
    height: 36px;
    background: transparent;
    border-radius: 0;
    align-self: center;
    margin-top: 0;
    position: relative;
}

.home-footer-rectangle-green {
    width: 123px;
    height: 36px;
    background: var(--primary);
    border-radius: 16px;
    position: relative;
    align-self: center;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.home-footer-rectangle-green:active {
    background: var(--primary-dark);
}

.home-footer-rectangle-green.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.home-footer-rectangle-green.disabled:active {
    background: var(--primary);
}

/* Booking Screen */
.booking-container {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.booking-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.booking-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.booking-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.booking-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.booking-header-icon {
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.booking-home-icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.booking-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 12px;
}

.booking-title-section {
    background: #f8fafc;
    padding: 4px 12px;
}

.booking-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

.booking-content {
    padding: 12px 16px;
    padding-bottom: 80px;
}

.booking-section {
    margin-bottom: 16px;
}

.booking-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.booking-dropdown {
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 40px;
}

.booking-dropdown-icon-green {
    color: var(--primary);
}

.booking-dropdown-selected {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-dropdown-icon {
    font-size: 12px;
    color: var(--gray500);
}

.booking-dropdown-list {
    background: var(--white);
    border: 1px solid var(--gray200);
    border-radius: 8px;
    margin-top: 2px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.booking-dropdown-item {
    padding: 10px 12px;
    font-size: 16px;
    color: var(--gray900);
    cursor: pointer;
    border-bottom: 1px solid var(--gray200);
}

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

.booking-dropdown-item:hover {
    background: var(--gray50);
}

.booking-date-input {
    width: 100%;
    background: var(--gray50);
    border: 1px solid var(--gray200);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    color: var(--black);
    font-family: var(--font-family);
}

.booking-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 6px;
}

.booking-time-slot {
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    transition: all 0.2s;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-time-slot:hover {
    background: var(--gray200);
}

.booking-time-slot.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.booking-soc-parking-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.booking-soc-container,
.booking-parking-container {
    flex: 1;
}

.booking-parking-input {
    width: 100%;
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    font-family: var(--font-family);
    min-height: 40px;
    box-sizing: border-box;
}

.booking-parking-input:focus {
    outline: none;
    border-color: var(--primary);
}

.booking-book-button {
    width: 100%;
    background: var(--primary);
    border-radius: 8px;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    margin-top: 16px;
    transition: opacity 0.2s, background 0.2s;
}

.booking-book-button:active:not(.disabled) {
    background: var(--primary-dark);
}

.booking-book-button.disabled {
    background: var(--gray400);
    cursor: not-allowed;
    opacity: 0.5;
}

.booking-dropdown.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Car Display Box */
.booking-car-display {
    background: #F5F5F5;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    min-height: 50px;
    align-items: flex-start;
    position: relative;
}

.booking-car-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.booking-car-item:nth-child(1) {
    flex: 0 0 auto;
    min-width: 80px;
}

.booking-car-item:nth-child(2) {
    margin-left: 20px;
    flex: 1;
}

.booking-car-item:nth-child(3) {
    margin-left: 10px;
    flex: 0 0 auto;
    min-width: 60px;
}

.booking-car-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray600);
    margin-bottom: 4px;
    line-height: 1.2;
}

.booking-car-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
}

/* License Plate - always single line */
.booking-car-item:nth-child(1) .booking-car-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Brand & Model - can wrap to 2 lines */
.booking-car-item:nth-child(2) .booking-car-value {
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Battery - always single line */
.booking-car-item:nth-child(3) .booking-car-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Address Display Box */
.booking-address-display {
    background: #F5F5F5;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 44px;
}

.booking-address-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.booking-address-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
    word-break: break-word;
}

.booking-address-text-secondary {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray600);
    margin-top: 2px;
    line-height: 1.3;
}

.booking-address-arrow {
    font-size: 18px;
    color: var(--gray600);
    margin-left: 12px;
    flex-shrink: 0;
}

/* Date Input Hidden */
.booking-date-input-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    cursor: pointer;
}

.booking-dropdown-list {
    position: relative;
    z-index: 1000;
}

/* Menu Screen */
.menu-container {
    min-height: 100vh;
    background: var(--white);
}

.menu-header {
    background: var(--surface);
    height: 60px;
    padding-left: 0;
    padding-right: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.menu-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.menu-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.menu-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.menu-header-icon {
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.menu-home-icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.menu-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    padding: 0 4px;
}

.menu-content {
    padding: 8px 20px;
    padding-bottom: 100px;
}

.menu-section {
    margin-bottom: 14px;
}

.menu-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    padding: 0 4px;
}

.menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 3px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-item:active {
    background: var(--gray50);
}

.menu-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.menu-item.disabled .menu-item-text {
    color: var(--gray400);
}

.menu-item.disabled .menu-item-arrow {
    color: var(--gray400);
}

.menu-item-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.menu-item-arrow {
    font-size: 18px;
    color: var(--gray600);
    margin-left: 8px;
}

/* Menu Action Buttons */
.menu-buttons-section {
    margin-bottom: 14px;
}

.menu-button-row {
    margin-bottom: 6px;
}

.menu-action-button {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-action-button:active {
    background: var(--gray50);
}

.menu-action-button-left {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.menu-action-button-right {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.menu-update-status {
    font-size: 14px;
    font-weight: 500;
    color: #FF6B00;
    margin-top: 2px;
}

/* Responsive Design */
@media (min-width: 768px) {
    body {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray600);
}

.empty-state-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray900);
    margin-bottom: 8px;
}

.empty-state-instruction {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray600);
    line-height: 1.4;
}

.subscription-empty-state {
    text-align: center;
    padding: 30px 20px;
}

.subscription-empty-text {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 8px;
    text-align: center;
}

.subscription-empty-instruction {
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    text-align: center;
    margin-top: 4px;
}

.subscription-subscribe-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.subscription-subscribe-button:active {
    background: var(--primary-dark);
}

/* Your Bookings Screen */
.bookings-page-container {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.bookings-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bookings-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.bookings-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.bookings-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.bookings-header-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.bookings-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookings-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.bookings-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.bookings-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.bookings-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

/* Loading State */
.bookings-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 150px;
}

.bookings-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.bookings-loading-text {
    font-size: 13px;
    color: var(--gray600);
    margin-top: 10px;
}

/* Empty State */
.bookings-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    min-height: 200px;
}

.bookings-empty-title {
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
}

.bookings-empty-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #9CA3AF;
    text-align: center;
    margin-top: 4px;
}

/* Bookings Sections */
.bookings-upcoming-section,
.bookings-history-section {
    padding: 12px 16px;
}

.bookings-section-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Cards List - Vertical Stack */
.bookings-cards-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Booking Card */
.bookings-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #E9ECEF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bookings-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.bookings-card-car-section {
    flex: 1;
}

.bookings-card-car-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.bookings-card-car-number {
    color: var(--gray900);
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

.bookings-card-status-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bookings-card-status-badge {
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
}

.bookings-card-status-badge.scheduled {
    background: #D1FAE5;
    color: #047857;
}

.bookings-card-status-badge.rescheduled {
    background: #FEF3C7;
    color: #D97706;
}

.bookings-card-status-badge.completed {
    background: var(--gray200);
    color: var(--gray600);
}

.bookings-card-status-badge.cancelled {
    background: #FEE2E2;
    color: #EF4444;
}

.bookings-card-id {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 4px;
}

.bookings-card-details-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.bookings-card-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.bookings-card-value {
    color: var(--gray900);
    font-size: 13px;
    font-weight: 600;
}

.bookings-card-address-value {
    color: var(--gray900);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    width: 100%;
}

/* Empty Message */
.bookings-empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    width: 100%;
}

.bookings-empty-message-text {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
}

.bookings-empty-message-subtext {
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    text-align: center;
    margin-top: 4px;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--gray200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.booking-card-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray900);
}

.booking-card-status {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.booking-card-status.upcoming {
    background: #D1FAE5;
    color: #10B981;
}

.booking-card-status.completed {
    background: #F3F4F6;
    color: #6B7280;
}

.booking-card-status.cancelled {
    background: #FEE2E2;
    color: #EF4444;
}

.booking-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-card-label {
    font-size: 12px;
    color: var(--gray500);
    min-width: 60px;
}

.booking-card-value {
    font-size: 12px;
    color: var(--gray800);
    font-weight: 500;
}

.booking-card-time {
    font-size: 13px;
    color: var(--gray700);
    margin-top: 4px;
}

.booking-card-address {
    font-size: 12px;
    color: var(--gray600);
    margin-top: 4px;
    line-height: 16px;
}

.booking-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray100);
}

.booking-card-cancel-btn {
    flex: 1;
    background: var(--error);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.bookings-empty-message {
    text-align: center;
    padding: 24px;
    color: var(--gray500);
    font-size: 14px;
}

/* Car Management Screen */
.car-container {
    min-height: 100vh;
    background: var(--white);
}

.car-header {
    background: var(--surface);
    height: 70px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 0 1px;
}

.car-back-button {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--gray900);
    cursor: pointer;
    padding: 8px;
}

.car-header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray900);
}

.car-header-spacer {
    width: 40px;
}

.car-content {
    padding: 20px;
    padding-bottom: 100px;
}

.car-add-button {
    width: 100%;
    background: var(--primary);
    border-radius: 8px;
    padding: 16px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    margin-bottom: 20px;
}

.car-add-button:active {
    background: var(--primary-dark);
}

.car-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cars Screen - Matching Your Bookings Screen */
.cars-page-container {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.cars-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cars-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.cars-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.cars-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.cars-header-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.cars-header-btn:hover {
    background: var(--primary-dark);
}

.cars-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cars-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.cars-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.cars-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.cars-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

/* Loading State */
.cars-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 150px;
}

.cars-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.cars-loading-text {
    font-size: 13px;
    color: var(--gray600);
    margin-top: 10px;
}

/* Empty State */
.cars-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.cars-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 8px;
}

.cars-empty-subtitle {
    font-size: 14px;
    color: var(--gray600);
    margin-bottom: 20px;
}

.cars-empty-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cars-empty-button:hover {
    background: var(--primary-dark);
}

/* Cars List */
.cars-content {
    padding: 12px 16px;
}

.cars-cards-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Car Card */
.cars-card {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

.cars-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cars-card-brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cars-card-brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cars-card-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

.cars-card-primary-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

.cars-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cars-card-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cars-card-detail-label {
    font-size: 12px;
    color: var(--gray500);
    font-weight: 500;
}

.cars-card-detail-value {
    font-size: 13px;
    color: var(--gray900);
    font-weight: 600;
}

/* Support Note */
.cars-support-note {
    margin-top: 16px;
    padding: 12px;
    background: #FEF2F2;
    border-radius: 8px;
    border: 1px solid #FECACA;
    text-align: center;
}

.cars-support-note-text {
    font-size: 13px;
    font-weight: 500;
    color: #DC2626;
}

/* Add Car Screen */
.add-car-page-container {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.add-car-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.add-car-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.add-car-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.add-car-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.add-car-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-car-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.add-car-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.add-car-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.add-car-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

/* Car Form */
.add-car-form-container {
    padding: 16px;
}

.add-car-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.add-car-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.add-car-row {
    display: flex;
    gap: 12px;
}

.add-car-field-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.add-car-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray700);
}

.add-car-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray900);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.add-car-input:focus {
    border-color: var(--primary);
}

.add-car-input::placeholder {
    color: var(--gray400);
}

/* Car Autocomplete */
.add-car-autocomplete-field {
    position: relative;
    width: 100%;
}

.add-car-autocomplete-container {
    position: relative;
    width: 100%;
}

.add-car-autocomplete-container .add-car-input {
    width: 100%;
}

.add-car-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--gray300);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    margin-top: 4px;
}

.add-car-suggestion-item {
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray100);
}

.add-car-suggestion-item:last-child {
    border-bottom: none;
}

.add-car-suggestion-item:hover {
    background: var(--gray100);
}

.add-car-suggestion-item.selected {
    background: var(--primary-light);
}

.add-car-suggestion-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.add-car-suggestion-text {
    flex: 1;
}

.add-car-suggestion-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray900);
}

.add-car-suggestion-detail {
    font-size: 12px;
    color: var(--gray500);
    margin-top: 2px;
}

.add-car-model-hint {
    margin-top: 6px;
}

.add-car-hint-text {
    font-size: 12px;
    color: var(--gray500);
    font-style: italic;
}

.add-car-autofill-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

/* Legacy dropdown styles (keeping for compatibility) */
.add-car-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.add-car-dropdown-selected {
    font-size: 14px;
    color: var(--gray600);
}

.add-car-dropdown-selected.selected {
    color: var(--gray900);
}

.add-car-dropdown-arrow {
    font-size: 10px;
    color: var(--gray500);
}

.add-car-dropdown-list {
    position: absolute;
    left: 16px;
    right: 16px;
    max-height: 200px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--gray300);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.add-car-dropdown-item {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--gray900);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-car-dropdown-item:hover {
    background: var(--gray100);
}

.add-car-dropdown-item.selected {
    background: var(--primary);
    color: var(--white);
}

.add-car-brand-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Form Buttons */
.add-car-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.add-car-cancel-btn {
    flex: 1;
    padding: 14px;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    background: var(--white);
    color: var(--gray700);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.add-car-cancel-btn:hover {
    background: var(--gray100);
}

.add-car-save-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.add-car-save-btn:hover {
    background: var(--primary-dark);
}

.add-car-save-btn:disabled {
    background: var(--gray300);
    cursor: not-allowed;
}

/* Subscription Screen - Enhanced */
.subscription-page-container {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.subscription-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.subscription-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.subscription-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.subscription-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.subscription-header-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.subscription-header-btn:hover {
    background: var(--primary-dark);
}

.subscription-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.subscription-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.subscription-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.subscription-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

/* Active Subscription Section */
.subscription-active-section {
    padding: 12px 16px;
}

.subscription-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray900);
    margin-bottom: 12px;
}

.subscription-active-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscription-active-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

.subscription-active-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.subscription-active-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

.subscription-active-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.subscription-active-status.active {
    background: var(--primary);
    color: var(--white);
}

.subscription-active-status.trial {
    background: #FEF3C7;
    color: #D97706;
}

.subscription-active-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 12px;
}

.subscription-active-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray200);
}

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

.subscription-date-label {
    font-size: 11px;
    color: var(--gray500);
    font-weight: 500;
}

.subscription-date-value {
    font-size: 13px;
    color: var(--gray900);
    font-weight: 600;
}

.subscription-active-stats {
    display: flex;
    justify-content: space-between;
}

.subscription-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.subscription-stat-label {
    font-size: 11px;
    color: var(--gray500);
    font-weight: 500;
    margin-bottom: 2px;
}

.subscription-stat-value {
    font-size: 14px;
    color: var(--gray900);
    font-weight: 700;
}

.subscription-support-note {
    margin-top: 16px;
    padding: 12px;
    background: #FEF2F2;
    border-radius: 8px;
    border: 1px solid #FECACA;
    text-align: center;
}

.subscription-support-note-text {
    font-size: 13px;
    font-weight: 500;
    color: #DC2626;
}

/* Plans Selection Section */
.subscription-selection-section {
    padding: 12px 16px;
}

.subscription-tabs-container {
    display: flex;
    background: #e5e7eb;
    border-radius: 25px;
    padding: 4px;
    margin-bottom: 16px;
}

.subscription-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray600);
    cursor: pointer;
    transition: all 0.2s;
}

.subscription-tab.active {
    background: var(--white);
    color: var(--gray900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.subscription-tab.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.subscription-info-note {
    background: var(--primary-light);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.subscription-info-text {
    font-size: 13px;
    color: var(--gray700);
    line-height: 1.4;
}

.subscription-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.subscription-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.subscription-loading-text {
    font-size: 13px;
    color: var(--gray600);
    margin-top: 10px;
}

.subscription-plans-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Plan Card */
.subscription-plan-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid var(--gray200);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.subscription-plan-card:hover {
    border-color: var(--gray300);
}

.subscription-plan-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.subscription-plan-card.popular {
    border-color: var(--primary);
}

.subscription-plan-popular-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.subscription-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.subscription-plan-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

.subscription-plan-selector {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-plan-card.selected .subscription-plan-selector {
    background: var(--primary);
    border-color: var(--primary);
}

.subscription-plan-selector-check {
    display: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.subscription-plan-card.selected .subscription-plan-selector-check {
    display: block;
}

.subscription-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 12px;
}

.subscription-plan-price-duration {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray600);
}

.subscription-plan-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.subscription-plan-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray700);
}

.subscription-plan-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* Subscribe Button */
.subscription-button-container {
    padding: 16px;
    margin-top: 8px;
}

.subscription-subscribe-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.subscription-subscribe-btn:hover:not(:disabled) {
    background: var(--primary-dark);
}

.subscription-subscribe-btn:disabled {
    background: var(--gray300);
    color: var(--gray500);
    cursor: not-allowed;
}

.subscription-subscribe-btn-active {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: default;
    transition: background 0.2s;
}

.subscription-subscribe-btn-active:disabled {
    background: var(--primary);
    color: var(--white);
    cursor: default;
}

/* Address Book Screen - Matching Your Bookings Screen */
.addressbook-page-container {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.addressbook-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.addressbook-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.addressbook-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.addressbook-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.addressbook-header-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.addressbook-header-btn:hover {
    background: var(--primary-dark);
}

.addressbook-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addressbook-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.addressbook-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.addressbook-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.addressbook-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

/* Loading State */
.addressbook-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 150px;
}

.addressbook-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.addressbook-loading-text {
    font-size: 13px;
    color: var(--gray600);
    margin-top: 10px;
}

/* Empty State */
.addressbook-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.addressbook-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 8px;
}

.addressbook-empty-subtitle {
    font-size: 14px;
    color: var(--gray600);
    margin-bottom: 20px;
}

.addressbook-empty-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.addressbook-empty-button:hover {
    background: var(--primary-dark);
}

/* Addresses List */
.addressbook-content {
    padding: 12px 16px;
}

.addressbook-cards-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Address Card */
.addressbook-card {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9ECEF;
}

.addressbook-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.addressbook-card-type {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray900);
}

.addressbook-card-default-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

.addressbook-card-address {
    font-size: 13px;
    color: var(--gray700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.addressbook-address-line1 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 2px;
}

.addressbook-address-detail {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray700);
}

.addressbook-address-rwa {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 2px;
}

.addressbook-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--gray200);
    padding-top: 10px;
}

.addressbook-action-icon {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addressbook-action-icon.edit {
    color: var(--primary);
}

.addressbook-action-icon.edit:hover {
    background: rgba(34, 208, 96, 0.1);
}

.addressbook-action-icon.default {
    color: #3b82f6;
}

.addressbook-action-icon.default:hover {
    background: rgba(59, 130, 246, 0.1);
}

.addressbook-action-icon.delete {
    color: #ef4444;
}

.addressbook-action-icon.delete:hover {
    background: rgba(239, 68, 68, 0.1);
}

.addressbook-action-icon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.addressbook-action-icon svg {
    display: block;
}

/* Add/Edit Address Screen */
.add-address-page-container {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.add-address-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.add-address-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.add-address-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.add-address-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.add-address-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-address-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.add-address-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.add-address-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.add-address-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

.add-address-form-container {
    padding: 16px;
}

.add-address-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.add-address-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.add-address-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray700);
}

.add-address-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray900);
    background: var(--white);
    box-sizing: border-box;
}

.add-address-input:focus {
    outline: none;
    border-color: var(--primary);
}

.add-address-row {
    display: flex;
    gap: 12px;
}

.add-address-field-half {
    flex: 1;
}

.add-address-checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.add-address-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.add-address-checkbox-label {
    font-size: 14px;
    color: var(--gray700);
}

.add-address-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.add-address-cancel-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray700);
    cursor: pointer;
}

.add-address-cancel-btn:hover {
    background: var(--gray100);
}

.add-address-save-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.add-address-save-btn:hover {
    background: var(--primary-dark);
}

.add-address-save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Autocomplete Container */
.add-address-autocomplete-field {
    position: relative;
    width: 100%;
}

.add-address-autocomplete-container {
    position: relative;
    width: 100%;
}

.add-address-autocomplete-container .add-address-input {
    width: 100%;
    box-sizing: border-box;
}

.add-address-autocomplete-loading {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.add-address-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Suggestions Dropdown */
.add-address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray200);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.add-address-suggestion-item {
    padding: 12px;
    border-bottom: 1px solid var(--gray100);
    cursor: pointer;
    transition: background 0.2s;
}

.add-address-suggestion-item:last-child {
    border-bottom: none;
}

.add-address-suggestion-item:hover {
    background: var(--gray50);
}

.add-address-suggestion-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray900);
}

.add-address-suggestion-code {
    font-size: 12px;
    color: var(--primary);
    margin-top: 2px;
}

/* RWA Display */
.add-address-rwa-display {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
}

.add-address-rwa-label {
    font-size: 12px;
    color: #15803d;
    font-weight: 500;
}

.add-address-rwa-value {
    font-size: 14px;
    color: #166534;
    font-weight: 600;
    margin-left: 6px;
}

/* Pincode Status */
.add-address-pincode-container {
    position: relative;
}

.add-address-pincode-status {
    font-size: 12px;
    margin-top: 4px;
}

.add-address-pincode-status.loading {
    color: #3b82f6;
}

.add-address-pincode-status.success {
    color: #10b981;
}

.add-address-pincode-status.error {
    color: #ef4444;
}

/* Address Type Options */
.add-address-type-options {
    display: flex;
    gap: 10px;
}

.add-address-type-btn {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray700);
    cursor: pointer;
    transition: all 0.2s;
}

.add-address-type-btn:hover {
    border-color: var(--primary);
}

.add-address-type-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Notification Screen */
.notification-container {
    min-height: 100vh;
    background: var(--white);
}

.notification-header {
    background: var(--surface);
    height: 70px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 0 1px;
}

.notification-back-button {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--gray900);
    cursor: pointer;
    padding: 8px;
}

.notification-header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray900);
}

.notification-header-spacer {
    width: 40px;
}

.notification-content {
    padding: 20px;
    padding-bottom: 100px;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Support Screen */
.support-container {
    min-height: 100vh;
    background: #f8fafc;
}

.support-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.support-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.support-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.support-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.support-header-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.support-header-btn:hover {
    background: var(--primary-dark);
}

.support-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.support-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.support-title-section {
    background: #f8fafc;
    padding: 6px 16px;
}

.support-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

.support-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 150px;
}

.support-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.support-loading-text {
    font-size: 13px;
    color: var(--gray600);
    margin-top: 10px;
}

.support-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    min-height: 200px;
}

.support-empty-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.support-empty-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
    margin-top: 10px;
    margin-bottom: 6px;
}

.support-empty-subtitle {
    font-size: 13px;
    color: var(--gray600);
    text-align: center;
    margin-bottom: 24px;
}

.support-create-button {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.support-tickets-content {
    padding: 0 12px;
}

.support-actions-section {
    margin-bottom: 10px;
}

.support-action-item {
    background: var(--white);
    border-radius: 8px;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.support-action-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.support-action-icon {
    width: 26px;
    height: 26px;
    border-radius: 13px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}

.support-action-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray900);
}

.support-section-container {
    margin-bottom: 10px;
}

.support-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray900);
    margin-bottom: 8px;
    line-height: 17px;
}

.support-history-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 100%;
}

.support-down-icon {
    width: 24px;
    height: 24px;
    margin-top: -4px;
    transition: transform 0.3s ease;
}

.support-tickets-list {
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-ticket-item {
    background: var(--white);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 2px;
    border: 1px solid var(--gray200);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.support-ticket-item:hover {
    background: var(--gray50);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-ticket-item:active {
    background: var(--gray100);
}

.support-ticket-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.support-ticket-id-container {
    flex: 1;
    min-width: 0;
    margin-right: 8px;
}

.support-ticket-id {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 2px;
}

.support-ticket-header-right {
    align-items: flex-end;
    flex-shrink: 0;
}

.support-status-badge {
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 500;
}

.support-ticket-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 4px;
}

.support-category-chip {
    background: var(--gray100);
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    color: var(--gray600);
    font-weight: 500;
}

.support-ticket-description {
    font-size: 12px;
    color: var(--gray700);
    line-height: 16px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.support-ticket-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.support-ticket-date {
    font-size: 11px;
    color: var(--gray500);
}

.support-history-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 4px;
}

.support-history-ticket-item {
    background: var(--white);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 2px;
    border: 1px solid var(--gray200);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.support-history-ticket-item:hover {
    background: var(--gray50);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-history-ticket-item:active {
    background: var(--gray100);
    cursor: pointer;
}

.support-history-ticket-content {
    flex: 1;
}

.support-history-ticket-id {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 4px;
}

.support-history-ticket-date {
    font-size: 12px;
    color: var(--gray500);
}

.support-empty-icon {
    display: none;
}

/* Create Ticket Screen */
.create-ticket-container {
    min-height: 100vh;
    background: #f8fafc;
}

.create-ticket-header {
    background: #f8fafc;
    height: 60px;
    padding-left: 0;
    padding-right: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.create-ticket-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.create-ticket-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.create-ticket-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.create-ticket-header-icon {
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.create-ticket-content {
    flex: 1;
    padding-bottom: 100px;
}

.create-ticket-title-section {
    background: var(--white);
    padding: 4px 10px;
    margin-bottom: 16px;
}

.create-ticket-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 2px;
    margin-left: 15px;
}

.create-ticket-form {
    padding: 0 20px;
}

.create-ticket-section {
    padding: 16px;
    border-bottom: 1px solid var(--gray100);
}

.create-ticket-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 4px;
}

.create-ticket-section-subtitle {
    font-size: 14px;
    color: var(--gray600);
    margin-bottom: 16px;
}

.create-ticket-categories-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.create-ticket-category-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
}

.create-ticket-category-chip {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: var(--gray50);
    border: 1px solid var(--gray300);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray700);
    cursor: pointer;
    transition: all 0.2s;
}

.create-ticket-category-chip.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.create-ticket-selected-category {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 12px;
}

.create-ticket-description-container {
    background: var(--gray50);
    border-radius: 8px;
    border: 1px solid var(--gray300);
    padding: 12px;
}

.create-ticket-description-input {
    width: 100%;
    min-height: 120px;
    max-height: 200px;
    font-size: 14px;
    color: var(--gray900);
    background: transparent;
    border: none;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.create-ticket-description-input:focus {
    outline: none;
}

.create-ticket-description-input::placeholder {
    color: var(--gray500);
}

.create-ticket-character-count {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    color: var(--gray500);
}

.create-ticket-validation-text {
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
}

.create-ticket-submit-container {
    padding: 16px 20px;
    background: var(--white);
    border-top: 1px solid var(--gray200);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.create-ticket-submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.create-ticket-submit-button.disabled {
    background: var(--gray300);
    cursor: not-allowed;
}

/* Success Modal */
.create-ticket-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.create-ticket-success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.create-ticket-success-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    max-height: 80%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.create-ticket-success-modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--gray200);
}

.create-ticket-success-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray900);
}

.create-ticket-success-modal-close {
    padding: 4px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--gray600);
    font-weight: 700;
    cursor: pointer;
}

.create-ticket-success-modal-content {
    padding: 16px;
}

.create-ticket-ticket-number-section {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--gray50);
    border-radius: 8px;
}

.create-ticket-ticket-number-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray600);
    margin-bottom: 4px;
}

.create-ticket-ticket-number-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.create-ticket-success-modal-message {
    font-size: 16px;
    color: var(--gray700);
    line-height: 22px;
    text-align: center;
}

.create-ticket-success-modal-footer {
    padding: 16px;
    border-top: 1px solid var(--gray200);
}

.create-ticket-success-modal-button {
    width: 100%;
    background: var(--primary);
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* ===== TICKET DETAILS SCREEN ===== */
.ticket-details-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
}

.ticket-details-header {
    background: #f8fafc;
    height: 48px;
    padding-left: 0;
    padding-right: 12px;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ticket-details-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.ticket-details-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.ticket-details-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ticket-details-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-details-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 12px;
    padding-bottom: 80px;
}

.ticket-details-title-section {
    margin-bottom: 10px;
}

.ticket-details-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

/* Loading State */
.ticket-details-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ticket-details-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ticket-details-loading-text {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray600);
}

/* Ticket Info */
.ticket-details-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-details-card {
    background: var(--gray50);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--gray200);
}

.ticket-details-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ticket-details-id {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray900);
}

.ticket-details-status {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.ticket-details-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.ticket-details-category-chip {
    background: var(--primary);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
}

.ticket-details-date {
    font-size: 11px;
    color: var(--gray500);
}

/* Section */
.ticket-details-section {
    background: var(--white);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--gray200);
}

.ticket-details-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray700);
    margin-bottom: 8px;
}

.ticket-details-description {
    font-size: 13px;
    color: var(--gray800);
    line-height: 18px;
    white-space: pre-wrap;
}

/* Comments/Conversation */
.ticket-details-comments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 50px;
    max-height: 300px;
    overflow-y: auto;
}

.ticket-details-comment {
    padding: 10px;
    border-radius: 10px;
    max-width: 85%;
}

.ticket-details-comment.user {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ticket-details-comment.support {
    background: var(--gray100);
    color: var(--gray900);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.ticket-details-comment-text {
    font-size: 13px;
    line-height: 18px;
}

.ticket-details-comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    font-size: 10px;
    opacity: 0.7;
}

.ticket-details-comment-author {
    font-weight: 500;
}

.ticket-details-no-comments {
    text-align: center;
    padding: 16px;
    color: var(--gray500);
    font-size: 13px;
}

/* Add Comment */
.ticket-details-add-comment {
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 12px;
    border-top: 1px solid var(--gray200);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.ticket-details-comment-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-details-comment-input {
    flex: 1;
    border: 1px solid var(--gray300);
    border-radius: 16px;
    padding: 8px 12px;
    font-size: 13px;
    resize: none;
    max-height: 80px;
    font-family: inherit;
}

.ticket-details-comment-input:focus {
    outline: none;
    border-color: var(--primary);
}

.ticket-details-send-button {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.ticket-details-send-button:disabled {
    background: var(--gray300);
    cursor: not-allowed;
}

.ticket-details-send-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Actions */
.ticket-details-actions {
    position: fixed;
    bottom: -7px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-details-close-button {
    width: 50%;
    max-width: 200px;
    background: var(--error);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.ticket-details-close-button:disabled {
    background: var(--gray300);
    cursor: not-allowed;
}

/* Ticket closed state */
.ticket-details-closed-banner {
    background: var(--gray100);
    border: 1px solid var(--gray300);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: 10px;
}

.ticket-details-closed-text {
    font-size: 13px;
    color: var(--gray600);
}

.ticket-details-closed-date {
    font-size: 11px;
    color: var(--gray500);
    margin-top: 3px;
}

/* ==================== Booking Actions Modal ==================== */
/* No Subscription Modal */
.no-subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.no-subscription-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.no-subscription-modal-container {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 2001;
    margin: 0 auto;
    transform: translateZ(0);
}

.no-subscription-modal-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.no-subscription-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.no-subscription-modal-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 180px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(34, 208, 96, 0.2);
}

.no-subscription-modal-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(34, 208, 96, 0.3);
    transform: translateY(-1px);
}

.no-subscription-modal-button:active {
    background: var(--primary-dark);
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(34, 208, 96, 0.2);
}

/* ==================== Transactions Screen ==================== */
.transactions-page-container {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.transactions-header {
    background: #f8fafc;
    height: 60px;
    padding-left: 0;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.transactions-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.transactions-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.transactions-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.transactions-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transactions-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.transactions-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 12px;
}

.transactions-title-section {
    background: #f8fafc;
    padding: 4px 12px;
}

.transactions-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

/* Loading State */
.transactions-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    min-height: 120px;
}

.transactions-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.transactions-loading-text {
    font-size: 13px;
    color: var(--gray600);
    margin-top: 10px;
}

/* Empty State */
.transactions-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    min-height: 150px;
}

.transactions-empty-title {
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
}

.transactions-empty-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #9CA3AF;
    text-align: center;
    margin-top: 4px;
}

/* Transactions Content */
.transactions-content {
    padding: 8px 12px;
}

.transactions-cards-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Transaction Card */
.transaction-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #E9ECEF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.transaction-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E9ECEF;
}

.transaction-card-info {
    flex: 1;
}

.transaction-card-id {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.transaction-card-type {
    color: var(--gray900);
    font-size: 14px;
    font-weight: 600;
}

.transaction-card-status {
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-card-status.status-success {
    background: #D1FAE5;
    color: #065F46;
}

.transaction-card-status.status-pending {
    background: #FEF3C7;
    color: #92400E;
}

.transaction-card-status.status-failed {
    background: #FEE2E2;
    color: #991B1B;
}

.transaction-card-status.status-refunded {
    background: #DBEAFE;
    color: #1E40AF;
}

.transaction-card-status.status-cancelled {
    background: #F3F4F6;
    color: #374151;
}

.transaction-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.transaction-card-plan {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray900);
    margin-bottom: 6px;
}

.transaction-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.transaction-card-detail-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.transaction-card-detail-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.transaction-card-detail-value {
    color: var(--gray900);
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

/* Transaction Details Modal */
.transaction-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.transaction-details-container {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.transaction-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #E9ECEF;
    background: #f8fafc;
}

.transaction-details-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
    margin: 0;
}

.transaction-details-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: color 0.2s;
}

.transaction-details-close:hover {
    color: var(--gray900);
}

.transaction-details-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

.transaction-details-section {
    margin-bottom: 14px;
}

.transaction-details-section:last-child {
    margin-bottom: 0;
}

.transaction-details-section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray900);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-details-row-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-details-info-row {
    display: flex;
    gap: 12px;
}

.transaction-details-info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-details-label {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
}

.transaction-details-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray900);
}

.transaction-details-plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 10px;
    background: #f0fdf4;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
    margin-bottom: 8px;
}

.transaction-details-breakup {
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px;
}

.transaction-details-breakup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.transaction-details-gst-subrows {
    display: flex;
    gap: 16px;
    padding-left: 16px;
    margin-top: 2px;
}

.transaction-details-breakup-subrow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
}

.transaction-details-breakup-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.transaction-details-breakup-sublabel {
    font-size: 11px;
    font-weight: 400;
    color: #6B7280;
}

.transaction-details-breakup-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray900);
}

.transaction-details-breakup-subvalue {
    font-size: 11px;
    font-weight: 500;
    color: #6B7280;
}

.transaction-details-discount {
    color: #16A34A;
}

.transaction-details-breakup-divider {
    height: 1px;
    background: #E9ECEF;
    margin: 6px 0 4px 0;
}

.transaction-details-total {
    margin-top: 0;
}

.transaction-details-total .transaction-details-breakup-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray900);
}

.transaction-details-total .transaction-details-breakup-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.transaction-details-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.transaction-details-payment-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 6px;
}

/* Make transaction cards clickable */
.transaction-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.transaction-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.transaction-card:active {
    transform: translateY(0);
}

/* ==================== About Us Screen ==================== */
.aboutus-page-container {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.aboutus-header {
    background: #f8fafc;
    height: 70px;
    padding-left: 0;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.aboutus-logo-container {
    align-items: flex-start;
    margin-left: -70px;
}

.aboutus-logo-image {
    width: 66vw;
    height: 22vw;
    max-width: 275px;
    max-height: 91px;
    object-fit: contain;
}

.aboutus-header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.aboutus-header-icon {
    padding: 4px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-header-icon-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.aboutus-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.aboutus-content-container {
    padding: 0 16px;
}

.aboutus-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    margin-top: 6px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.aboutus-title-container {
    margin-bottom: 12px;
}

.aboutus-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray900);
    letter-spacing: 0.3px;
}

.aboutus-content-divider {
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    margin-bottom: 12px;
    opacity: 0.2;
}

.aboutus-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aboutus-intro-text {
    font-size: 15px;
    color: var(--gray800);
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.aboutus-paragraph-text {
    font-size: 14px;
    color: var(--gray700);
    line-height: 21px;
    text-align: left;
    margin-top: 8px;
}

.aboutus-highlight-text {
    color: var(--primary);
    font-weight: 600;
}

.aboutus-closing-text {
    font-size: 14px;
    color: var(--gray800);
    line-height: 21px;
    font-weight: 500;
    margin-top: 8px;
    font-style: italic;
}

.aboutus-footer-section {
    background: var(--white);
    margin: 0 16px;
    margin-top: 6px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.aboutus-footer-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.aboutus-footer-item:hover {
    background-color: var(--gray50);
}

.aboutus-footer-item:active {
    background-color: var(--gray100);
}

.aboutus-footer-item-text {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

.aboutus-footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.aboutus-footer-divider {
    height: 1px;
    background: var(--gray200);
    margin: 0 16px;
}

.aboutus-section-subtitle {
    font-size: 15px;
    color: var(--gray800);
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 6px;
}

.aboutus-bullet-point {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 6px;
    padding-left: 4px;
}

.aboutus-bullet {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.aboutus-bullet-text {
    font-size: 14px;
    color: var(--gray700);
    line-height: 21px;
    flex: 1;
}

.aboutus-meta-info {
    margin-bottom: 12px;
}

.aboutus-meta-text {
    font-size: 13px;
    color: var(--gray600);
    margin-bottom: 4px;
}

.aboutus-meta-label {
    font-weight: 600;
    color: var(--gray700);
}

.aboutus-formula-text {
    font-size: 14px;
    color: var(--gray800);
    font-weight: 500;
    font-family: monospace;
    background: var(--gray50);
    padding: 12px;
    border-radius: 8px;
    margin-top: 6px;
    margin-bottom: 6px;
    text-align: center;
}

.aboutus-example-label {
    font-size: 14px;
    color: var(--gray800);
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 6px;
}

.aboutus-example-box {
    background: var(--gray50);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.aboutus-example-text {
    font-size: 14px;
    color: var(--gray700);
    line-height: 21px;
    margin-bottom: 6px;
}

.aboutus-contact-box {
    background: var(--gray50);
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
}

.aboutus-contact-company {
    font-size: 14px;
    color: var(--gray800);
    font-weight: 700;
    margin-bottom: 6px;
}

.aboutus-contact-text {
    font-size: 14px;
    color: var(--gray700);
    line-height: 21px;
    margin-bottom: 6px;
}

.booking-actions-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-actions-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.booking-actions-modal-container {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.booking-actions-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--gray200);
}

.booking-actions-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

.booking-actions-modal-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.booking-actions-close-icon {
    width: 24px;
    height: 24px;
}

.booking-actions-info {
    padding: 16px;
    border-bottom: 1px solid var(--gray200);
}

.booking-actions-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.booking-actions-info-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

.booking-actions-session-id {
    font-size: 12px;
    color: var(--gray600);
    font-weight: 500;
}

.booking-actions-info-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-actions-car-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

.booking-actions-datetime {
    font-size: 14px;
    color: var(--gray700);
}

.booking-actions-site {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray900);
}

.booking-actions-reason-container {
    padding: 16px;
    border-bottom: 1px solid var(--gray200);
}

.booking-actions-reason-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 8px;
}

.booking-actions-reason-input {
    width: 100%;
    border: 1px solid var(--gray300);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    color: var(--gray900);
    background: var(--gray50);
    resize: none;
    font-family: inherit;
}

.booking-actions-reason-input::placeholder {
    color: var(--gray500);
}

.booking-actions-buttons {
    padding: 16px;
}

.booking-action-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: var(--gray50);
    border: 1px solid var(--gray200);
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.booking-action-button:last-child {
    margin-bottom: 0;
}

.booking-action-button:hover {
    background: var(--gray100);
}

.booking-action-content {
    flex: 1;
    text-align: left;
}

.booking-action-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 2px;
}

.booking-action-description {
    font-size: 14px;
    color: var(--gray600);
}

.booking-action-arrow {
    width: 24px;
    height: 24px;
}

.booking-actions-disabled {
    padding: 16px;
}

.booking-actions-disabled-message {
    background: var(--gray50);
    border: 1px solid var(--gray200);
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    color: var(--gray600);
    text-align: center;
    line-height: 1.5;
}

/* Make upcoming booking cards clickable */
.bookings-card.clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bookings-card.clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==================== Booking Details Modal ==================== */
.booking-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.booking-details-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.booking-details-modal-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.booking-details-modal-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray200);
}

.booking-details-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray900);
}

.booking-details-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-details-close-icon {
    width: 24px;
    height: 24px;
}

.booking-details-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-details-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    min-height: 150px;
}

.booking-details-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.booking-details-loading-text {
    font-size: 14px;
    color: var(--gray600);
    margin-top: 12px;
}

.booking-details-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-details-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 2px;
}

.booking-details-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-details-info-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    row-gap: 10px;
}

.booking-details-info-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 10px;
}

.booking-details-info-row:last-child {
    margin-bottom: 0;
}

.booking-details-info-row .booking-details-info-item {
    flex: 1;
}

.booking-details-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-details-info-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray600);
}

.booking-details-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray900);
}

.booking-details-info-subvalue {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray600);
    margin-top: 2px;
}

.booking-details-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.booking-details-status-badge.scheduled {
    background: #D1FAE5;
    color: #065F46;
}

.booking-details-status-badge.completed {
    background: #D1FAE5;
    color: #065F46;
}

.booking-details-status-badge.in_progress,
.booking-details-status-badge.in-progress {
    background: #DBEAFE;
    color: #1E40AF;
}

.booking-details-status-badge.cancelled,
.booking-details-status-badge.canceled {
    background: #FEE2E2;
    color: #991B1B;
}

.booking-details-charger-simple {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-details-charger-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray900);
}

.booking-details-charger-address {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray700);
    line-height: 1.5;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .booking-details-info-grid,
    .booking-details-info-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .booking-details-modal-container {
        width: 95%;
        max-height: 90vh;
    }
}

/* Booking Details Action Buttons */
.booking-details-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray200);
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.booking-details-reschedule-button {
    flex: 1;
    padding: 9px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.booking-details-reschedule-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.booking-details-reschedule-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-details-cancel-button {
    flex: 1;
    padding: 9px 18px;
    background: #ef4444;
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.booking-details-cancel-button:hover {
    background: #dc2626;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.booking-details-cancel-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Home Booking Action Buttons */
.home-booking-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray200);
}

/* Home Booking Message */
.home-booking-message {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray200);
}

.home-booking-message-text {
    font-size: 12px;
    color: var(--gray600);
    text-align: center;
    line-height: 1.5;
    padding: 8px 12px;
    background: var(--gray50);
    border-radius: 8px;
}

/* Booking Details Message */
.booking-details-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-top: 1px solid var(--gray200);
    font-size: 12px;
    color: var(--gray600);
    text-align: center;
    line-height: 1.5;
    background: var(--gray50);
    border-radius: 8px;
}

.home-booking-reschedule-button {
    flex: 1;
    padding: 9px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.home-booking-reschedule-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.home-booking-reschedule-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home-booking-cancel-button {
    flex: 1;
    padding: 9px 18px;
    background: #ef4444;
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.home-booking-cancel-button:hover {
    background: #dc2626;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.home-booking-cancel-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Booking Actions Modal Cancel Button */
.booking-actions-cancel-button {
    width: 100%;
    padding: 9px 18px;
    background: #ef4444;
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.booking-actions-cancel-button:hover {
    background: #dc2626;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.booking-actions-cancel-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
