.currency-data-wrapper {
    direction: rtl;
    font-family: Tahoma, sans-serif;
    margin: 20px 0;
}

.currency-update-time {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border: 1px solid #e9ecef;
}

.currency-notice {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #ffeaa7;
    font-size: 14px;
}

.currency-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.currency-table th {
    background: #2c3e50;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

.currency-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.currency-table tr:hover {
    background: #f8f9fa;
}

.currency-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.currency-item:hover {
    background: #f8f9fa;
}

.currency-name {
    font-weight: bold;
    color: #2c3e50;
}

.currency-price {
    color: #27ae60;
    font-weight: bold;
}

.currency-change {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.change-positive {
    background: #d4edda;
    color: #155724;
}

.change-negative {
    background: #f8d7da;
    color: #721c24;
}

.currency-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

.currency-admin-panel {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.currency-admin-panel h3 {
    margin-top: 0;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .currency-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .currency-table {
        font-size: 14px;
    }
    
    .currency-table th,
    .currency-table td {
        padding: 8px 5px;
    }
}