.card {
    border-radius: 1rem;
    border: 1px solid rgb(226 232 240);
    background: #fff;
    box-shadow: 0 10px 25px -15px rgb(15 23 42 / 0.25);
}

.field-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(51 65 85);
}

.field-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgb(203 213 225);
    background: #fff;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    color: rgb(15 23 42);
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field-input:focus {
    outline: none;
    border-color: rgb(59 130 246);
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.15);
}

.field-input:disabled {
    cursor: not-allowed;
    background: rgb(248 250 252);
    color: rgb(100 116 139);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgb(37 99 235);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 8px 20px -10px rgb(37 99 235 / 0.8);
    transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover:not(:disabled) {
    background: rgb(29 78 216);
}

.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid rgb(203 213 225);
    background: #fff;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(51 65 85);
    box-shadow: 0 4px 12px -8px rgb(15 23 42 / 0.2);
}

.btn-secondary:hover {
    background: rgb(248 250 252);
}

.table-th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgb(71 85 105);
}

.table-td {
    padding: 0.875rem 1rem;
    vertical-align: top;
    color: rgb(30 41 59);
}

.vehicle-title {
    font-weight: 600;
    color: rgb(15 23 42);
}

.vehicle-trim {
    margin-top: 0.125rem;
    font-size: 0.8rem;
    color: rgb(100 116 139);
}

.location-line {
    line-height: 1.4;
}

.location-zip {
    margin-top: 0.125rem;
    font-size: 0.8rem;
    color: rgb(100 116 139);
}
