/* Van Hire Cost Calculator styles */

.vhc-calculator {
    max-width: 640px;
    margin: 30px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.vhc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vhc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.vhc-field input,
.vhc-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d7de;
    border-radius: 6px;
    font-size: 15px;
}

.vhc-field-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.vhc-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #70757d;
}

.vhc-submit {
    border: none;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.vhc-submit:hover,
.vhc-submit:focus {
    background: #0a58ca;
}

.vhc-results {
    margin-top: 24px;
    padding: 18px;
    border-radius: 10px;
    background: #f7f9fc;
    border: 1px solid #e2e6ef;
    min-height: 60px;
}

.vhc-result-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.vhc-result-card {
    background: #ffffff;
    border: 1px solid #e6e8ef;
    border-radius: 8px;
    padding: 12px;
}

.vhc-result-card span {
    display: block;
    font-size: 13px;
    color: #6c717c;
    margin-bottom: 4px;
}

.vhc-note {
    margin-top: 14px;
    font-size: 13px;
    color: #5a5f66;
}

.vhc-error {
    color: #a61b2b;
    background: #fff2f0;
    border: 1px solid #ffccc7;
    border-radius: 8px;
    padding: 12px;
}
