/* إضافة تنقل للشاشات الكبيرة */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    .desktop-nav a {
        text-decoration: none;
        color: #2c3e50;
        padding: 8px 15px;
        border-radius: 5px;
        transition: all 0.3s;
    }
    
 /* تحسين عرض أسعار العملات - شبكة متجاوبة */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.rate-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.currency-flag {
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.rate-info {
    flex: 1;
}

.currency-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

.rate-numbers {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.rate-buy, .rate-sell {
    text-align: center;
    flex: 1;
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 8px;
}

.rate-buy span, .rate-sell span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.rate-buy strong, .rate-sell strong {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ألوان مختلفة لكل عملة (اختياري) */
.rate-card[data-currency="USD"] { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }
.rate-card[data-currency="EUR"] { background: linear-gradient(135deg, #0b486b 0%, #3a7bd5 100%); }
.rate-card[data-currency="TRY"] { background: linear-gradient(135deg, #b24592 0%, #f15f79 100%); }
.rate-card[data-currency="SAR"] { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.rate-card[data-currency="AED"] { background: linear-gradient(135deg, #7F7FD5 0%, #86A8E7 50%, #91EAE4 100%); }

/* تحسين للشاشات الصغيرة */
@media (max-width: 768px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .rate-card {
        padding: 15px;
    }
    
    .currency-flag {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .rate-card {
        flex-direction: column;
        text-align: center;
    }
    
    .currency-flag {
        margin-bottom: 10px;
    }
}   
    
    
    
    
    /* إضافة تنسيقات جديدة */
.transfer-card {
    border-left: 4px solid #9b59b6;
}

.transfer-status-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.transfer-status-completed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.transfer-status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
    .desktop-nav a:hover {
        background: #f8f9fa;
        color: #3498db;
    }
    
    .desktop-nav a i {
        margin-left: 5px;
    }
}