.deposit-container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.deposit-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.instruction-card {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.1));
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bkash-number {
    font-size: 2rem;
    font-weight: bold;
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.instruction-text {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bengali-text {
    font-size: 1.2rem;
    color: #feca57;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    color: white;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4ecdc4;
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    color: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Specific styling for select dropdowns */
.form-control select,
select.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    color: white;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
    cursor: pointer;
}

.form-control select:focus,
select.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4ecdc4;
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    color: white;
    outline: none;
}

/* Style select options */
.form-control select option,
select.form-control option {
    background: #2c3e50;
    color: white;
    padding: 0.8rem;
    border: none;
}

.form-control select option:hover,
select.form-control option:hover {
    background: #34495e;
    color: #4ecdc4;
}

.form-control select option:checked,
select.form-control option:checked {
    background: #4ecdc4;
    color: white;
}

/* For browsers that support it, style the dropdown arrow */
.form-control select::-ms-expand,
select.form-control::-ms-expand {
    display: none;
}

/* Additional specific styling for payment method dropdown */
#id_payment_method_withdraw {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(78, 205, 196, 0.3) !important;
    border-radius: 10px !important;
    color: white !important;
    padding: 0.8rem 1rem !important;
    font-size: 1rem !important;
    width: 100% !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
    cursor: pointer !important;
}

#id_payment_method_withdraw:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #4ecdc4 !important;
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25) !important;
    color: white !important;
    outline: none !important;
}

#id_payment_method_withdraw option {
    background: #2c3e50 !important;
    color: white !important;
    padding: 0.8rem !important;
    border: none !important;
}

#id_payment_method_withdraw option:hover {
    background: #34495e !important;
    color: #4ecdc4 !important;
}

#id_payment_method_withdraw option:checked {
    background: #4ecdc4 !important;
    color: white !important;
}

.btn-deposit {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.btn-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    color: white;
}

.btn-deposit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    margin-top: 0.5rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.modal-title {
    color: #4ecdc4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-message {
    color: #feca57;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.modal-message-bengali {
    color: #feca57;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.modal-close-btn {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .deposit-container {
        padding: 1rem;
    }
    
    .bkash-number {
        font-size: 1.5rem;
    }
    
    .bengali-text {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
} 