/* استایل کلی کارت کیف پول */
.silver-wallet-card {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: auto;
}

.silver-wallet-card h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.silver-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
}

/* دکمه‌های جذاب */
.silver-wallet-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.silver-wallet-btn:hover {
    background: #4338ca;
}

/* جدول تاریخچه تراکنش‌ها */
.silver-wallet-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.silver-wallet-table th, .silver-wallet-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.silver-wallet-table th {
    background: #4f46e5;
    color: white;
}

.silver-wallet-table tr:hover {
    background: #f3f4f6;
}
