/* ===========================
   CLEAN DONATION PAGE UI
   =========================== */

/* Global */
body {
    background: #f8fafc;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Teal Accent */
.text-teal {
    color: #0d9488 !important;
}

/* Navbar */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f766e;
}

.nav-link {
    color: #475569 !important;
    font-weight: 500;
    border-radius: 6px;
    padding: 6px 12px !important;
}

.nav-link:hover,
.nav-link.active {
    color: #0d9488 !important;
    background: #f0fdfa;
}

/* Section Title */
h1 {
    font-size: 2.5rem;
    color: #0f766e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead {
    color: #64748b;
    font-size: 1.1rem;
}

/* Buttons */
.btn-outline-success {
    border-radius: 8px;
    border-color: #0d9488;
    color: #0d9488;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.2s ease;
}

.btn-outline-success:hover {
    background: #0d9488;
    color: white;
    border-color: #0d9488;
}

.btn-success {
    background: #0d9488;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.btn-success:hover {
    background: #0f766e;
}

/* Input Fields */
.form-control {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    border-radius: 8px;
    padding: 12px 16px;
    transition: border 0.2s ease;
}

.form-control:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Radio Buttons */
.form-check-input:checked {
    background-color: #0d9488;
    border-color: #0d9488;
}

/* Card */
.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.card-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    color: #0f766e;
    font-weight: 600;
}

/* Footer */
footer {
    background: #f1f5f9 !important;
    color: #475569;
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
}

footer a {
    color: #0d9488 !important;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* Amount Buttons */
.amount-btn {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: white;
    color: #475569;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: #0d9488;
    color: #0d9488;
    background: #f0fdfa;
}

.amount-btn.active {
    background: #0d9488;
    color: white;
    border-color: #0d9488;
}