/*Generale*/
#alertBox,
#confirmBox,
#formBox {
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
}

#alertBox button,
#confirmBox button {
    position: absolute;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    padding: 5px 25px;
    bottom: 10px;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}

/*alert Box*/
#alertBox .alert {
    display: block;
    position: fixed;
    width: 300px;
    min-height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fafafa;
    border: 2px outset #f00;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.9);
}

#alertBox .alertTXT {
    padding: 10px;
    font-weight: bold;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#alertBox button.ok {
    background-color: #8c8;
    left: 50%;
    transform: translateX(-50%);
    border-color: #070;
}

#alertBox button.ok:hover {
    background-color: #3c3;
}

/*confirm Box*/
#confirmBox .confirm {
    display: block;
    position: fixed;
    width: 300px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fafafa;
    border: 2px outset #fc0;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.9);
}

#confirmBox .confirmTXT {
    padding: 10px;
    font-weight: bold;
}

#confirmBox button.da {
    background-color: #8c8;
    left: 25px;
    border-color: #070;
}

#confirmBox button.da:hover {
    background-color: #3c3;
}

#confirmBox button.nu {
    background-color: #c88;
    right: 25px;
    border-color: #700;
}

#confirmBox button.nu:hover {
    background-color: #c33;
}

/*formBox*/

#formBox .form{
	overflow-y: auto;
	display: block;
	position: fixed;
    width: 50%;
    min-height: 50px;
	max-height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	background-color: #fafafa;
	border-style: outset;
	border-width: 2px;
	border-color: #090;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.5);
}

#formBox #formular {
	display: block;
	padding: 10px;
	font-weight: bold;
    text-align: center;
}

#formBox .closeBtn {
	position: absolute;
	color: #c00;
	font-weight: bold;
	top: 5px;
	right: 20px;
	cursor: pointer;
	background-color: #aaa;
	border-style: outset;
	padding: 2px 5px;
	border-radius: 7px;
	font-size: 12px;
	opacity: 0.5;
}

#formBox .closeBtn:hover {
	cursor: pointer;
	opacity: 1;
}

/* Notificari */
#notificari {
	display: none;
	position: absolute;
	top:5px;
	left:5px;
	right:5px;
	min-height: 50px;
	width: auto;
	z-index: 999;
}
.eroareProcesare {
	display: block;
	color: #cc0000;
	background-color: #fdd;
	font-size: small;
	font-weight: bold;
	font-style: italic;
	text-align: left;
	width: 100%;
	padding: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: #fcc;
	border-radius: 4px;
}

.pendingProcesare {
	display: block;
	color: #666600;
	background-color: #ffd;
	font-size: small;
	font-weight: bold;
	font-style: italic;
	text-align: left;
	width: 100%;
	padding: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: #ffc;
	border-radius: 4px;
}

.okProcesare {
	display: block;
	color: #009900;
	background-color: #efe;
	font-size: small;
	font-weight: bold;
	font-style: italic;
	text-align: left;
	width: 100%;
	padding: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: #cfc;
	border-radius: 4px;
}