/* Latar belakang luar (overlay) */
.my-swal-container {
  background: rgba(252, 7, 7, 0.41);
}

/* Kotak popup utama */
.my-swal-popup {
  border-radius: 20px;
  background: #f8f9fa;
  /*
  background: rgba(252, 7, 7, 0.41);
  */
  border: 2px solid #3085d6;
}

/* Judul */
.my-swal-title {
  color: #2c3e50;
  font-weight: bold;
}

/* Tombol Konfirmasi */
.my-swal-confirm {
  background-color: #fc868e !important;
  border-radius: 5px;
  padding: 10px 25px;
}

/* Tombol Batal */
.my-swal-cancel {
  background-color: #dc3545 !important;
  color: white;
}

/* Input text */
.my-swal-input {
  border: 2px solid #ced4da;
  border-radius: 8px;
  box-shadow: none !important;
}

/* Footer di bagian bawah */
.my-swal-footer {
  border-top: 1px solid #dee2e6;
  font-size: 0.8rem;
}

/* Progress bar waktu */
.my-swal-timer-bar {
  background: #3085d6;
}
/* custom sweatalert css */
.my-custom-popup {
    border-radius: 20px !important; /* atur sesuai keinginan */
}
/* Popup border-radius custom */
.rounded-popup {
    border-radius: 20px !important;
	background: #f8f9fa;
  /*
  background: rgba(252, 7, 7, 0.41);
  */
  border: 2px solid #3085d6;
}

/* Circle loader (hanya lingkaran yang berputar) */
.circle-loader {
    width: 100px;
    height: 100px;
    border: 6px solid #d3d3d3;     
    border-top: 6px solid #007bff; 
    border-radius: 50%;
    animation: spin linear forwards;
    margin: 0 auto;
    position: relative;
}

/* spin animation sesuai timer */
@keyframes spin {
	 0% {
    transform: rotate(0deg); /* Mulai dari 0 derajat */
  }
  100% {
    transform: rotate(360deg); /* Akhirnya 360 derajat */
  }
  
		 
}

/* Icon statik di tengah lingkaran (di luar circle-loader) */
.icon-center {
    position: absolute;
    top: 56%;
    left: 56%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 10%;
}

