.crp-deposit-container, .crp-withdrawal-container {
    max-width: 600px;
    margin: 20px 0;
}

.crp-deposit-form, .crp-withdrawal-form {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.crp-btn {
    background: #007cba;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.crp-btn:hover {
    background: #005a87;
}

.crp-btn-cancel {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.crp-btn-delete {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.crypto-wallet-box {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.wallet-address code {
    background: #fff;
    padding: 5px;
    display: inline-block;
    word-break: break-all;
}

.copy-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.pending-deposit-card, .cancelled-deposit-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.deposit-details {
    flex: 1;
}

.deposit-actions {
    margin-left: 15px;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
}

.status-pending, .status-pending_approval {
    color: #ff9800;
}

.status-completed {
    color: #4caf50;
}

.status-cancelled {
    color: #dc3545;
}

.crp-table {
    width: 100%;
    border-collapse: collapse;
}

.crp-table th, .crp-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.crp-table th {
    background: #f5f5f5;
}

.merge-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.balance-info {
    background: #e8f5e9;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.crp-admin-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.stat-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    margin: 0 0 10px 0;
}

.stat-box p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #007cba;
}

@media (max-width: 768px) {
    .pending-deposit-card, .cancelled-deposit-card {
        flex-direction: column;
    }
    
    .deposit-actions {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .crp-admin-stats {
        flex-direction: column;
    }
}