.pad-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: tahoma;
    direction: rtl;
}

.pad-header { text-align: center; border-bottom: 2px solid #eee; margin-bottom: 20px; }
.badge { background: #27ae60; color: white; padding: 2px 8px; border-radius: 5px; }

.pad-balance-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.pad-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.pad-actions button { flex: 1; padding: 12px; border: none; border-radius: 8px; cursor: pointer; color: white; transition: 0.3s; }
.btn-deposit { background: #27ae60; }
.btn-withdraw { background: #e67e22; }

.bank-form { background: white; padding: 15px; border-radius: 10px; border: 1px solid #ddd; animation: fadeIn 0.5s; }
.bank-form input { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px; }
.bank-hint { font-size: 12px; color: #2980b9; margin-top: -5px; margin-bottom: 10px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; }