/* 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: 20px;
    top: 20px;
    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;
}

.landing-name-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 16px;
    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);
}

.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: 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;
}

.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;
}

/* 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: center;
    margin-bottom: 3px;
}

.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);
}

/* 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: var(--white);
}

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

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

.booking-header-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    flex: 1;
    text-align: center;
}

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

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

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

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

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

.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: 4px;
    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: 12px 16px;
    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: 12px 16px;
    font-size: 16px;
    color: var(--black);
    font-family: var(--font-family);
}

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

.booking-time-slot {
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    transition: all 0.2s;
    min-height: 36px;
    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: 16px;
}

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

.booking-parking-input {
    width: 100%;
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    font-family: var(--font-family);
    min-height: 44px;
    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: 16px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    margin-top: 24px;
}

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

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

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

.booking-car-item:last-child {
    margin-left: 5px;
}

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

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

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

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

.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: 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-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: 16px;
    font-weight: 500;
    color: var(--gray900);
    margin-bottom: 8px;
}

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

.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-container {
    min-height: 100vh;
    background: var(--white);
}

.bookings-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;
}

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

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

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

.bookings-tabs {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-bottom: 1px solid var(--gray200);
    padding: 0 20px;
}

.bookings-tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray500);
    cursor: pointer;
}

.bookings-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

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

.bookings-tab-content {
    display: none;
}

.bookings-tab-content.active {
    display: block;
}

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

/* 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;
}

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

.subscription-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;
}

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

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

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

.subscription-tabs {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-bottom: 1px solid var(--gray200);
    padding: 0 20px;
}

.subscription-tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray500);
    cursor: pointer;
}

.subscription-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

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

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

/* Address Book Screen */
.address-book-container {
    min-height: 100vh;
    background: var(--white);
}

.address-book-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;
}

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

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

.address-book-header-spacer {
    width: 40px;
}

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

.address-book-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;
}

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

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

/* 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: 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;
}

.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: 16px;
}

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

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

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

.support-title-section {
    background: var(--white);
    padding: 4px 10px;
    margin-bottom: 12px;
}

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

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

.support-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px 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: 14px;
    color: var(--gray600);
    margin-top: 16px;
}

.support-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 300px;
}

.support-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

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

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

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

.support-action-item {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.support-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray900);
    margin-bottom: 12px;
    line-height: 19.2px;
}

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

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

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

.support-ticket-item {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 4px;
    border: 1px solid var(--gray200);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

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

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

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

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

.support-status-badge {
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
    font-size: 12px;
    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 6px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--gray600);
    font-weight: 500;
}

.support-ticket-description {
    font-size: 14px;
    color: var(--gray700);
    line-height: 18px;
    margin-bottom: 8px;
    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: 12px;
    color: var(--gray500);
}

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

.support-history-ticket-item {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 4px;
    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;
}

.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;
}
