
/* MODAL STYLE */
.modal-content {
border-radius: 18px;
border: none;
padding: 10px;
box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

/* HEADER */
.modal-header {
border-bottom: none;
}

/* INPUT */
.form-control {
border-radius: 10px;
font-size: 0.9rem;
}

/* BUTTON */
.modal .btn-hero-primary {
padding: 10px;
font-size: 0.95rem;
}

.btn-hero-primary i {
margin-right: 6px;
}

/* TOAST */
.toast {
border-radius: 12px;
font-size: 0.9rem;
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}



/* OVERLAY */
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: 0.3s;
}

/* ACTIVE */
.loading-overlay.active {
opacity: 1;
visibility: visible;
}

/* SPINNER */
.loader {
width: 50px;
height: 50px;
border: 4px solid #fff;
border-top: 4px solid #ffc107;
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}






/* SUCCESS OVERLAY */
.success-animation {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10000;
display: none;
}

/* CIRCLE */
.checkmark-circle {
width: 80px;
height: 80px;
border-radius: 50%;
background: #28a745;
display: flex;
align-items: center;
justify-content: center;
}

/* CHECK */
.checkmark {
width: 25px;
height: 50px;
border-right: 5px solid #fff;
border-bottom: 5px solid #fff;
transform: rotate(45deg);
animation: checkAnim 0.4s ease forwards;
}

@keyframes checkAnim {
0% {
opacity: 0;
transform: rotate(45deg) scale(0.5);
}
100% {
opacity: 1;
transform: rotate(45deg) scale(1);
}
}