:root {
    --primary-color: #002133;
    --accent-color: #FFEB3B;
    --text-light: #FFFFFF;
    --error-color: #FF3B3B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-light);
    min-height: 100vh;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.onboarding-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group {
    width: 100%;
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    color: var(--primary-color);
}

.form-input::placeholder {
    color: #666;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.form-footer {
    margin-top: 16px;
    text-align: center;
}

.resend-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 8px;
}

.map-container {
    width: 100%;
    height: 200px;
    background: #ccc;
    border-radius: 4px;
    margin-bottom: 24px;
}

.footer {
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .form-input {
        font-size: 14px;
    }
    
    .btn-primary {
        font-size: 14px;
    }
}

.dashboard-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.logo-small {
    width: 48px;
    height: 48px;
}

.user-status {
    flex: 1;
}

.status-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.status-text {
    font-size: 14px;
    opacity: 0.8;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.booking-section {
    margin-bottom: 32px;
}

.booking-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

/* Booking Form Styles */
.booking-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.booking-form h2 {
    font-size: 20px;
    margin-bottom: 24px;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 8px;
}

.form-select option {
    color: var(--primary-color);
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.visiting-charges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.charges {
    font-weight: 600;
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .booking-form {
        padding: 16px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .btn-secondary {
        font-size: 13px;
        padding: 10px;
    }
    
    .form-select {
        font-size: 14px;
    }
}

.dashboard-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.logo-small {
    width: 48px;
    height: 48px;
}

.user-status {
    flex: 1;
}

.status-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.status-text {
    font-size: 14px;
    opacity: 0.8;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.booking-section {
    margin-bottom: 32px;
}

.booking-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

/* Booking Form Styles */
.booking-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.booking-form h2 {
    font-size: 20px;
    margin-bottom: 24px;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 8px;
}

.form-select option {
    color: var(--primary-color);
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.visiting-charges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.charges {
    font-weight: 600;
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .booking-form {
        padding: 16px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .btn-secondary {
        font-size: 13px;
        padding: 10px;
    }
    
    .form-select {
        font-size: 14px;
    }
}