/* Modern Parking Ticket Design */
* {
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: rgb(11, 27, 99);
    min-height: 100vh;
    color: #1f2937;
    line-height: 1.6;
}

/* Main container for centering ticket */
#app {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Parking ticket container */
.parking-ticket-card {
    background: #ffffff;
    border-radius: 20px;

    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Ticket section dividers with rounded cuts */
.ticket-section {
    position: relative;
    border-bottom: 1px solid #d1d5db;
}

.ticket-section:last-child {
    border-bottom: none;
}

/* Button styling */
button {
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 16px;
    color: #ffffff !important;
    background-color: #2d72d2;
    position: relative;
    z-index: 10;
}

button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 114, 210, 0.3);
    background-color: #1d4ed8;
    color: #ffffff !important;
}

button:active:not(:disabled) {
    transform: translateY(0);
    color: #ffffff !important;
}

/* Form styling */
input,
select {
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
    letter-spacing: 0.025em;
    font-size: 16px;
}

input:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.025em;
}

/* Large heading for parking location */
h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

/* Subheading for details */
p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Powered by BaseUp styling */
.powered-by {
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    padding: 32px 16px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Responsive design */
@media (max-width: 480px) {
    #app {
        padding: 10px;
    }

    .parking-ticket-card {
        max-width: 100%;
        border-radius: 12px;
    }

    .ticket-section {
        padding: 16px;
    }
}
