#popup_container {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    min-width: 320px;
    max-width: 480px;
    background: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#popup_title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    color: #111111;
    background: #f2f4f7;
    border-bottom: 1px solid #dcdfe4;
    padding: 12px 16px;
    margin: 0;
    cursor: default;
}

#popup_content {
    padding: 20px 24px;
    margin: 0;
    position: relative;
}

/* Left indicator bar instead of icons */
#popup_content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #3b82f6;
}

#popup_content.alert:before {
    background: #3b82f6;
}

#popup_content.confirm:before {
    background: #3b82f6;
}

#popup_content.prompt:before {
    background: #3b82f6;
}


#popup_message {
    line-height: 1.6;
}


#popup_panel {
    text-align: right;
    padding: 16px 24px;
    border-top: 1px solid #dcdfe4;
}

#popup_panel input[type="button"],
#popup_panel button {
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 8px;
    background: #6fa6e1;
    color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Arial;
}

#popup_panel input[type="button"]:hover,
#popup_panel button:hover {
    background: #e9ecef;
    color: #000000;
}

#popup_panel input[type="button"]:active,
#popup_panel button:active {
    transform: scale(0.97);
}

#popup_prompt {
    width: 100%;
    margin-top: 12px;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #cbd5e1;
}

#popup_prompt:focus {
    outline: none;
    border-color: #2563eb;
}


/* #popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; Dialog will be no smaller than this
	max-width: 600px; Dialog will wrap after this width
	background: #FFF;
	border: solid 5px #999;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC url(images/title.gif) top repeat-x;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(images/info.gif);
}

#popup_content.confirm {
	background-image: url(images/important.gif);
}

#popup_content.prompt {
	background-image: url(images/help.gif);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
} */