.custom-alert-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-alert-overlay.active
{
	opacity: 1;
	visibility: visible;
}

.custom-alert
{
	max-width: 380px;
	min-width: 320px;
	background-color: #ffffff;
	border-radius: 2px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.custom-alert-overlay.active .custom-alert
{
	transform: translateY(0);
}

.custom-alert-body
{
	background-color: white;
	padding: 25px;
	text-align: center;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-alert-message
{
	font-size: 13px;
	color: #333;
	line-height: 1.6;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	word-break: break-word;
	overflow: hidden;
}

.custom-alert-content
{
	width: 100%;
  box-sizing: border-box;
	text-align:center;
	padding:0;
}

.custom-alert-content-title
{
	font-weight: normal;
	font-size:18px;
	margin-bottom:15px;
	color:#333;
}

.custom-alert-entry
{
	font-size: 13px;
	margin-bottom: 15px;
}

.custom-alert-entry p
{
	line-height:1.6;
	color:#666;
}
.dialog-form-content-events-title
{
	text-align: left;
	font-size:18px;
	margin-bottom:15px;
	font-weight: normal;
	color: #b93000;
}
.dialog-form-content-events-title .fa{
	font-size: 18px;
	margin-right: 6px;
}
.custom-alert-content-events{
	text-align: left;
	line-height: 1.8;
}

.custom-alert-events-tips{
	text-align: left;
	font-size:13px;
	margin-top:10px;
	font-weight: normal;
	color: #b93000;
}
.custom-alert-content-events ul{
	margin: 0 0 0 15px;
}
.custom-alert-content-events ul li{
	margin: 0;
	padding: 0;
}
.custom-alert-events-tips .fa{
	font-size: 16px;
	margin-right: 5px;
}

.custom-alert-tips
{
	font-size: 14px;
	color:#b93000;
}

.dialog-form-content
{
	text-align:left;
}
.dialog-form-content-title
{
	font-size:18px;
	margin-bottom:15px;
	color:#333;
	font-weight: normal;
}

.dialog-form-tips
{
	font-size:14px;
	color:#ff0000;
	margin-bottom: 5px;
}
.dialog-form-hot
{
	color:#b93000;
}

.dialog-form-mark
{
	color:#666;
}

.dialog-form-control
{
	width: 100%;
  padding: 6px 10px;
  font-size: 13px;
  color: #333;
  background-color: #f6fff508;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  margin: 0 0 5px 0;
  box-shadow: 0 2px 10px rgba(5, 4, 4, 0.09);
}

.custom-alert-footer
{
	padding: 12px 16px;
	display: flex;
	justify-content: center;
	gap: 10px;
	border-top: 1px solid #eee;
}

.custom-alert-btn
{
	background-color: #1890ff;
	color: #ffffff;
	border: none;
	padding: 8px 26px;
	border-radius: 2px;
	cursor: pointer;
	font-size: 13px;
	transition: background-color 0.2s;
}


.custom-alert-btn:hover
{
	background-color: #096dd9;
}

.custom-alert-footer:not(:has(.confirm, .cancel)) .custom-alert-btn
{
	background-color: #1890ff;
	color: #ffffff;
}

.custom-alert-footer:not(:has(.confirm, .cancel)) .custom-alert-btn:hover
{
	background-color: #096dd9;
}

.custom-alert-qrcode {
    text-align: center;
    margin: 5px 0;
}

.custom-alert-btn.confirm {
    background-color: #1890ff;
}

.custom-alert-btn.confirm:hover {
    background-color: #096dd9;
}

.custom-alert-btn.cancel {
    background-color: #f5f5f5;
    color: #333;
}

.custom-alert-btn.cancel:hover {
    background-color: #e8e8e8;
}

.dialog-form-content p {
    margin: 0 0 10px 0;
}

.dialog-form-control::placeholder {
    color: #ccc;
    font-size: 12px;
}
