/* Container styling */
.sc-zakah-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 0; 
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden; 
}

/* The Banner Header */
.sc-form-banner {
    width: 100%;
    height: 120px; 
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #e2e8f0;
}

.sc-form-content {
    padding: 20px;
}


.sc-zakah-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #334155;
}

/* Suggested Amount Buttons */
.sc-suggested-amounts {
    margin-bottom: 20px;
}

.sc-amounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.sc-suggest-btn {
    padding: 10px 5px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
    text-align: center;
}

.sc-suggest-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}

.sc-suggest-btn:active {
    background: #e2e8f0;
    transform: translateY(1px);
}

/* Input Fields */
.sc-amount {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.sc-amount:focus {
    border-color: #6366f1;
    outline: none;
}

/* Fee Checkbox */
.sc-fee-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

.sc-fee-wrapper input {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Total Display */
.sc-total-display {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: #1e293b;
    border: 1px dashed #cbd5e1;
}

.sc-total-value {
    color: #059669;
}

/* Main Pay Button */
.sc-pay-btn {
    width: 100%;
    padding: 14px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sc-pay-btn:hover {
    background: #334155;
}

.sc-pay-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}