/* Container chính */
.payment-methods-container {
    padding: 10px 0;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Tiêu đề vùng */
.payment-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Khung lưới hiển thị danh sách thẻ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* Thẻ ngân hàng đơn lẻ */
.payment-card {
    background: #ffffff;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Vùng hiển thị QR ngân hàng (nếu có) */
.payment-qr {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    padding: 4px;
    border-radius: 6px;
    background: #fff;
}

.payment-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Vùng nội dung text chi tiết */
.payment-info {
    flex-grow: 1;
}

.bank-name {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: bold;
    color: #1a202c;
    border-bottom: 2px solid #3182ce;
    padding-bottom: 4px;
    display: inline-block;
}

/* Dòng thông tin text */
.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.info-row:last-child {
    margin-bottom: 0;
}

.label {
    color: #718096;
}

.value {
    color: #2d3748;
    text-align: right;
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

/* Nút sao chép tài khoản nhanh */
.btn-copy {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 5px;
    padding: 2px;
    font-size: 12px;
    transition: transform 0.1s;
}

.btn-copy:active {
    transform: scale(0.85);
}

/* Thông báo trống */
.payment-empty {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    border: 1px dashed #cfd8dc;
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}