/* * Wallet Module Styles
* Path: inc/wallet/assets/css/wallet.css
*/

/* Card Gói Nạp */
.td-wallet-pkg {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.td-wallet-pkg:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.15);
}

.td-wallet-pkg.active {
    border-color: #4f46e5;
    background-color: #eef2ff;
}

/* Checkmark khi chọn */
.td-wallet-pkg .check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #4f46e5;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}
.td-wallet-pkg.active .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Thông tin gói */
.td-pkg-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}
.td-pkg-bonus {
    font-size: 0.85rem;
    color: #059669;
    font-weight: 600;
    background: #d1fae5;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
}

/* Ngân hàng QR */
.td-bank-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    border: 1px dashed #cbd5e1;
}
.td-qr-img {
    max-width: 200px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Lịch sử giao dịch */
.td-trans-history .status-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.td-trans-history .status-success { background: #dcfce7; color: #166534; }
.td-trans-history .status-pending { background: #fef9c3; color: #854d0e; }
.td-trans-history .status-cancelled { background: #fee2e2; color: #991b1b; }
