/* css/style.css */
.gold-price-table {
    width: 100%;
    border-collapse: collapse;
}

.gold-price-table th,
.gold-price-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.gold-price-table th {
    background-color: #f2f2f2;
    text-align: left;
}

.gold-price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.gold-price-table tr:hover {
    background-color: #ddd;
}


.gold-calculator, .zakat-calculator, .bullion-calculator {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.gold-calculator h3, .zakat-calculator h3, .bullion-calculator h3 {
    margin-top: 0;
}

.gold-calculator label, .zakat-calculator label, .bullion-calculator label {
    display: block;
    margin-bottom: 10px;
}

.gold-calculator input, .zakat-calculator input, .bullion-calculator input, 
.gold-calculator select, .zakat-calculator select, .bullion-calculator select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.gold-calculator button, .zakat-calculator button, .bullion-calculator button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.gold-calculator button:hover, .zakat-calculator button:hover, .bullion-calculator button:hover {
    background-color: #005a87;
}
