/* ========================================
   BARANGAY — DELIVERY & LOADING/UNLOADING
              TRUCK CLEARANCE
   CSS/index_delivery_prompt.css
   Inherits base from index_residency_prompt.css
   ======================================== */

/* ── FIELD ───────────────────────────────────────────── */
.dl-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.dl-field.has-error .rbi-input,
.dl-field.has-error .rbi-select {
    border-color: #c0392b !important;
    /* matched to project-wide error red */
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

/* ── ERROR MESSAGES ──────────────────────────────────── */
.dl-error-msg {
    font-size: 0.73rem;
    color: #c0392b;
    /* matched to project-wide error red */
    font-weight: 500;
    min-height: 16px;
    display: block;
}

/* ── NARROW FIELD ────────────────────────────────────── */
.dl-field-narrow {
    max-width: 340px;
}

/* ── TIME RANGE ──────────────────────────────────────── */
.dl-time-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dl-time-input {
    flex: 1;
    min-width: 0;
}

.dl-time-sep {
    font-size: 0.78rem;
    font-weight: 700;
    color: #7a92aa;
    white-space: nowrap;
    flex-shrink: 0;
}

.dl-field.has-error .dl-time-input {
    border-color: #c0392b !important;
    /* matched to project-wide error red */
    background: #fff8f8;
}

/* ── EXTRA ROW ANIMATION ─────────────────────────────── */
.dl-extra-row.dl-animate-in {
    animation: dlRowSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dlRowSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FLATPICKR RANGE INPUT OVERRIDES ─────────────────── */
#dl-date-range {
    cursor: pointer;
    background-color: #f7f8fc;
    /* matched to project-wide input background */
}

#dl-date-range:hover {
    background-color: #ffffff;
}