/* auper Styles */
.auper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

/* Common CSS for alert and confirmation boxes */
.alert-box, .confirmation-box {
    
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
   width: 60%;
       background: #DCDCDC; /* background color */
  
  transform: perspective(500px) rotateY(calc(20deg * var(--i, 1)));

font-weight: bold;
   /* Adjust the font size to make it smaller */


}

/* OK and Cancel Button Styles */
.ok-button, .cancel-button {
    padding: 10px 25px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    bottom: 20%; /* Position at 80% from the bottom of the alert box */
    left: 50%;
    transform: translate( 50%, 80%); /* Center horizontally and 80% from the bottom */
  border-radius: 25px;
 font-weight: bold;
  border: 1px solid #A9A9A9;
 box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;

}

/* OK Button Styles */
.ok-button {
    background-color: #4CAF50; /* Green for OK button */
    color: white;
    margin: 5px;
    padding: 10px 35px; 
}

/* Cancel Button Styles */
.cancel-button {
    background-color: #f44336; /* Red for Cancel button */
    color: white;
    margin: 5px;

}



.svg-icon.error-icon, .svg-icon.success-icon {
	     bottom: 50%; /* Position at 80% from the bottom of the alert box */
    right: 50%;
    
   position: absolute;
	padding: 25px 25px;
    animation: tilt-n-move-shaking 0.25s infinite, jump-shaking 0.83s infinite;
}



