/* ===== ABRS FINAL UI – SPACED & CLEAN ===== */

.abrs-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    font-family: Arial, Helvetica, sans-serif;
}

.abrs-title {
    text-align: center;
    margin-bottom: 30px;
}

.abrs-title h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.abrs-title p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #555;
}

/* Layout */
.abrs-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Card */
.abrs-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.abrs-card h3 {
    margin: 0 0 24px;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
}

/* 🔴 ALL INPUTS & SELECTS – RED BORDER + SPACING */
.abrs-card input,
.abrs-card select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 12px;
    border: 2px solid #ff0000 !important;
    outline: none;
    box-sizing: border-box;
    background: #fff;
    color: #333;
    margin-bottom: 18px;   /* 👈 MAIN SPACING FIX */
}

/* Placeholder */
.abrs-card input::placeholder {
    color: #666;
}

/* Dropdown arrow styling */
.abrs-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #ff0000 50%),
        linear-gradient(135deg, #ff0000 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(1em + 4px),
        calc(100% - 17px) calc(1em + 4px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

/* Button */
.abrs-btn {
    width: 100%;
    padding: 16px;
    background: #e60000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.abrs-btn:hover {
    opacity: 0.9;
}

/* Right summary */
.abrs-summary h3 {
    text-align: left;
    margin-bottom: 20px;
}

.abrs-summary p {
    margin: 14px 0;
    font-size: 15px;
}

.abrs-summary .total {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 900px) {
    .abrs-grid {
        flex-direction: column;
        align-items: center;
    }
}
