﻿:root {
    --magenta: #cf3679;
    --magenta-dark: #b82e69;
    --ink-border: #e9edf2;
    --ink-muted: #6a7280;
    --ink-shadow: 0 16px 40px rgba(0,0,0,.06);
}

/* Base */
.container {
    font-family: 'Montserrat',sans-serif;
    color: #000;
}

    .container > h2 {
        font-weight: 700; /* Montserrat Bold 10pt */
        font-size: 18px;
        margin: 8px 0 16px;
    }

/* White card shell like the mock */
#donationForm {
    background: #fff;
    border: 1px solid var(--ink-border);
    border-radius: 12px;
    box-shadow: var(--ink-shadow);
    padding: 18px;
}

/* Sections */
.form-section {
    border: 1px solid var(--ink-border);
    border-radius: 10px;
    background: #f7fafe; /* subtle light */
    padding: 14px;
    margin-bottom: 16px;
}

    /* Section headings (h5 inside sections) */
    .form-section h5 {
        font-weight: 700; /* Bold 10pt */
        font-size: 14px;
        margin: 0 0 10px;
        color: #000;
    }

/* Labels (8pt) */
label, .form-label {
    font-size: 12px; /* ~8pt */
    font-weight: 600; /* Montserrat Semi/Bold feel */
    color: #000;
    margin-bottom: 6px;
}

/* Required star without editing label text */
.required-star::after {
    content: " *";
    color: #cf3679;
    font-weight: 700;
}

/* Form controls – prevent text clipping & keep compact */
.form-control, .form-select {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 12px;
    height: auto;
    min-height: 44px;
    border: 1px solid #d7dce4;
    border-radius: 8px;
    box-shadow: none !important;
}

    .form-control:focus, .form-select:focus {
        border-color: #c7cfe0;
        outline: 0;
        box-shadow: 0 0 0 3px rgba(207,54,121,.08) !important;
    }

/* Smaller numeric boxes inside tables (Quantity/Value) */
.table .form-control {
    min-height: 36px;
    height: 36px;
    padding: 6px 10px;
    font-size: 13px;
}

/* Table styling like mock */
.table {
    border-color: var(--ink-border);
    margin-bottom: 8px;
}

    .table thead {
        background: #f4f6fb;
        border-bottom: 1px solid var(--ink-border);
    }

    .table th {
        font-size: 12px; /* 8pt */
        font-weight: 700;
        color: #000;
        border-color: var(--ink-border) !important;
    }

    .table td {
        vertical-align: middle;
        border-color: var(--ink-border) !important;
        font-size: 12px;
    }

/* Dry item image size */
.dry-item-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e6ee;
}

/* Inline tiny helper text */
.text-muted, .small {
    color: var(--ink-muted) !important;
}

/* Pink CTA */
.btn-ywca {
    background: var(--magenta);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 700; /* Bold 8pt */
    font-size: 10pt;
    width: 100%;
}

    .btn-ywca:hover {
        background: var(--magenta-dark);
        color: #fff;
    }

/* Tiny icon delete button */
.btn-outline-danger.btn-sm {
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1;
}

/* Bootstrap alerts softened */
.alert {
    border-radius: 8px;
    border: 1px solid #ffe3a6;
}

.alert-warning {
    background: #fff7e0;
    color: #5a4a1a;
}

/* Yellow note box (the big address block in mock) */
#dropoff-fields .alert-warning {
    background: #fff2c6;
    border-color: #ffe3a6;
}

/* Checkbox row spacing */
.form-check {
    margin-top: 8px;
    margin-bottom: 8px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

/* Make date/time rows tidy */
input[type="date"].form-control {
    min-height: 40px;
    height: 40px;
}

/* Mobile niceties */
@media (max-width:576px) {
    .table thead {
        display: none;
    }

    .table tr {
        display: block;
        border-bottom: 1px solid var(--ink-border);
        padding: 8px 0;
    }

    .table td {
        display: block;
        border: 0 !important;
        padding: 6px 0;
    }

        .table td:first-child {
            margin-bottom: 6px;
        }
}
/* Only this label → 10pt */
.donate-10pt {
    font-size: 10pt !important;
}
