/**
 * VTM custom overrides — nạp SAU style.css (trong head.php) để thắng độ ưu tiên.
 * Nơi đặt các tinh chỉnh giao diện toàn site (không sửa file WowDash gốc).
 */

/* Bo góc lớn cho TẤT CẢ nút toàn hệ thống (gồm cả .btn-sm/.btn-lg và biến thể). */
.btn {
	border-radius: var(--bs-border-radius-lg) !important;
}

/* Mã dạng ticket (mirror .ticket theme cũ): nền trắng, chữ cam đỏ, viền đứt + 2 lỗ tròn 2 bên.
   Dùng chung cho mã voucher (trang Voucher) và mã dự thưởng (trang Khách hàng). */
.vc-ticket {
	display: inline-block;
	background: #fff;
	color: #ff5722;
	font-weight: bold;
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 14px;
	position: relative;
	border: 1px dashed #ff5722;
	cursor: pointer;
}
.vc-ticket:hover { background: #ff5722; color: #fff; font-weight: 500; }
.vc-ticket::before,
.vc-ticket::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	transform: translateY(-50%);
}
.vc-ticket::before { left: -6px; border-right: 1px dashed #ff5722; }
.vc-ticket::after { right: -6px; border-left: 1px dashed #ff5722; }
