/* css/style.css */
.try-usd-rates-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.conversion-example {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.conversion-label {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

.conversion-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.exchange-rate-table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    margin: 20px 0;
    direction: rtl;
}

.exchange-rate-table th,
.exchange-rate-table td {
    border: 1px solid #ddd;
    padding: 12px 8px;
    font-size: 16px;
}

.exchange-rate-table th {
    background-color: gold;
    color: white;
}

.exchange-rate-table tbody tr:nth-child(even) {
    background-color: white;
}

.exchange-rate-table tbody tr:hover {
    background-color: white;
}

@media only screen and (max-width: 600px) {
    .conversion-text {
        font-size: 14px;
    }
    .exchange-rate-table th,
    .exchange-rate-table td {
        padding: 8px 4px;
        font-size: 14px;
    }
}