.currency-price-table {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    direction: rtl;
}

.currency-price-table .category-section table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.currency-price-table .category-section th {
    background-color: #2c3e50;
    color: white;
    font-weight: 600;
    padding: 12px;
    border: 1px solid #ddd;
    text-align: right;
}

.currency-price-table .category-section td {
    padding: 12px;
    border: 1px solid #ddd;
}

.currency-price-table .category-section tr:hover {
    background-color: #f8f9fa;
}

.currency-price-table .last-update {
    background-color: #f1f8ff;
    padding: 10px 15px;
    border-radius: 6px;
    border-right: 4px solid #189998;
    text-align: left;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .currency-price-table .category-section table {
        display: block;
        overflow-x: auto;
    }
    
    .currency-price-table .category-section th,
    .currency-price-table .category-section td {
        white-space: nowrap;
    }
}

.price-error {
    color: #dc3545;
    padding: 10px;
    background: #f8d7da;
    border-radius: 4px;
    display: inline-block;
}