@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

.zakat-calculator-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Cairo', sans-serif;
    max-width: 950px;
    margin: 30px auto;
    background: #fff;
    direction: rtl;
}

.zakat-inputs-section,
.zakat-results-section {
    box-sizing: border-box;
}

.zakat-inputs-section {
    width: 48%;
}

.zakat-results-section {
    width: 48%;
    padding: 25px;
}

.zakat-block {
    margin-bottom: 25px;
}

h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.input-row {
    margin-bottom: 15px;
}

.input-row label {
    display: block;
    color: #555;
    margin-bottom: 8px;
    font-size: 15px;
}

.zakat-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    text-align: left;
    direction: ltr;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 15px;
}

.result-row.total {
    font-weight: 700;
    font-size: 16px;
}

.result-amount {
    direction: ltr;
    text-align: left;
    display: inline-block;
    min-width: 120px;
}

.result-amount .currency {
    color: #888;
    margin-left: 8px; /* Changed from margin-right */
}

.donate-button {
    width: 100%;
    background-color: #63cac3;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.donate-button:hover {
    background-color: #52b8b0;
}

.heart-icon {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .zakat-inputs-section,
    .zakat-results-section {
        width: 100%;
    }
    .zakat-results-section {
        margin-top: 30px;
    }
}