/* Base page styling */
body {
    background: #f4f6f8;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

#header {
    z-index: 99;
}

.navbar {
    margin-top: 1rem;
}

/* Panel styling */
.panel {
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.panel-primary > .panel-heading {
    background: linear-gradient(135deg, #1f4e79, #2c6fa3);
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 18px 20px;
}

.panel-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Panel body spacing */
.panel-body {
    padding: 30px 30px 20px 30px;
    background: #ffffff;
}

/* Section dividers */
.panel-body hr {
    margin: 30px 0;
    border-top: 1px solid #e4e7ea;
}

/* Form labels */
.control-label {
    font-weight: 600;
    color: #1f4e79;
}

/* Inputs */
.form-control {
    border-radius: 6px;
    border: 1px solid #d6d9dd;
    box-shadow: none;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #2c6fa3;
    box-shadow: 0 0 0 2px rgba(44, 111, 163, 0.1);
}

/* Buttons */
.btn-primary {
    background: #2c6fa3;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #1f4e79;
}

.btn-default {
    border-radius: 6px;
    padding: 10px 18px;
}

/* Footer */
.panel-footer {
    background: #f9fafb;
    border-top: 1px solid #e4e7ea;
    padding: 18px 25px;
    border-radius: 0 0 10px 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .panel-body {
        padding: 20px;
    }

    .panel-title {
        font-size: 18px;
    }
}

.pick-up-note{
    font-size: 1.5rem;
    font-weight: 600;
    width: fit-content;
    text-align: center;
    margin: 0 auto 2rem auto;
}

select.form-control {
    height: 34px;
    padding: 6px 12px;
    line-height: 1.42857143;
}

.form-control {
    line-height: normal;
}

/* RECA form: restore visible native radio buttons even when main.css hides them */
form.form-horizontal .radio input[type="radio"] {
    -webkit-appearance: radio !important;
    -moz-appearance: radio !important;
    appearance: radio !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;

    margin: 3px 8px 0 0 !important;
    padding: 0 !important;

    clip: auto !important;
    clip-path: none !important;
    overflow: visible !important;
    transform: none !important;
    z-index: auto !important;

    border: initial !important;
    background: initial !important;
    box-shadow: none !important;
}

form.form-horizontal .radio label {
    display: inline-flex !important;
    align-items: flex-start !important;
    gap: 0 !important;
    font-weight: 400;
}

form.form-horizontal .radio input[type="radio"] + * {
    margin-left: 0 !important;
}

form.form-horizontal .radio label::before,
form.form-horizontal .radio label::after,
form.form-horizontal .radio input[type="radio"]::before,
form.form-horizontal .radio input[type="radio"]::after {
    content: none !important;
    display: none !important;
}