.common-button--checked {
	margin: 10px 10px;
	padding: 10px 20px;
	background-color: #4BD9D7;
	color: #fff;
	border-radius: 20px;
	opacity: 1;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

.common-button {
	margin: 10px 10px;
	padding: 10px 20px;
	background-color: #4BD9D733;
	color: #4BD9D7;
	border-radius: 20px;
	opacity: 1;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

.error-msg {
	font-size: 12px;
	font-weight: bold;
	color: rgb(230, 98, 21);
}

.popup-comp__button {
	margin: 20px;
	padding: 10px 20px;
	border: none;
	background-color: #007bff;
	color: white;
	cursor: pointer;
}

.popup-comp__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	display: none; /* 初始隐藏 */
}

.popup-comp__content {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-comp__title {
	margin-top: 0;
	color: #333;
}

.popup-comp__message {
	color: #f90;
	margin-bottom: 20px;
}

.popup-comp__button-container {
	display: flex;
	justify-content: space-between;
}

.popup-comp__button--default {
	padding: 10px 20px;
	border: 1px solid #FF924D;
	border-radius: 45px;
	cursor: pointer;
	font-size: 16px;
	opacity: 1;
}

.popup-comp__button--cancel {
	background-color: white;
	color: #f90;
	border: 1px solid #f90;
	margin-right: 10px;
}

.popup-comp__button--confirm {
	background-color: #f90;
	color: white;
	margin-left: 10px;
	text-decoration: none;
}

.qr-code {
	max-width: 50%;
}

/* 全域按鈕樣式 */
.rich-btn {
	border-radius: 8px;
	padding: 8px 20px;
	font-weight: 500;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease-in-out;
}

.rich-btn-primary {
	background-color: #4bd9d7 !important;
	border-color: #4bd9d7 !important;
	color: white !important;
}

.rich-btn-primary:hover {
	background-color: #2dd4bf !important;
	border-color: #2dd4bf !important;
	color: white !important;
	text-decoration: none !important;
}