.vl-step {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: helvetica, arial, sans-serif;
}

.vl-vehicle-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.vl-vehicle-reg {
    font-family: "Number Plate", helvetica, arial, sans-serif;
    background: linear-gradient(to bottom, #f8d038 0%, #f5ca2e 100%);
    display: inline-block;
    padding: 0.25em 0.6em;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.vl-vehicle-name {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #04246e;
}
.vl-vehicle-meta {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.25rem;
    text-transform: capitalize;
}

.vl-prompt {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.vl-label {
    font-weight: bold;
    font-size: 1rem;
    align-self: flex-start;
}
.vl-mileage-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1.4rem;
    border: 2px solid #000;
    border-radius: 6px;
    font-family: inherit;
    text-align: center;
    box-sizing: border-box;
    background: #fff;
    color: #000;
}
.vl-mileage-input:focus {
    outline: none;
    border-color: #02BBFF;
    box-shadow: 0 0 0 3px rgba(2, 187, 255, 0.25);
}
/* Style select dropdowns consistently */
select.vl-mileage-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path fill='%23000' d='M7 8L0 0h14z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.vl-button-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.vl-btn {
    border: none;
    border-radius: 6px;
    padding: 0.9rem 1.75rem;
    font-family: helvetica, arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.vl-btn-primary {
    background: #02BBFF;
    color: #fff;
}
.vl-btn-primary:hover { background: #04246e; color: #fff; }
.vl-btn-primary:active { background: #021852; }
.vl-btn-primary:disabled { background: #888; cursor: not-allowed; }
.vl-btn-secondary {
    background: #eee;
    color: #333;
}
.vl-btn-secondary:hover { background: #ddd; color: #333; }

.vl-success {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a7f37;
    text-align: center;
}

.vl-error {
    background: #fde2e2;
    color: #8a1a1a;
    border: 1px solid #f5b1b1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    width: 100%;
    max-width: 600px;
    font-family: helvetica, arial, sans-serif;
    text-align: center;
}

.vl-prompt, .vl-label {
    color: #fff !important;
}


@media screen and (max-width: 768px) {
  .hero-reg-input {
   font-size: 2rem;
  }
  .hero-reg-input::placeholder {
    font-size: 2rem;
  }
  .reg-plate .gb-strip::before {
    width: 20px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px dashed #f8d038;
    margin-bottom: 8px;
    margin-top: 10px;
}
.reg-plate .gb-strip {
    font-size: 1rem;
}
}

[hidden] { display: none !important; }
