.progress-container {
  position: relative;
  width: 30px;
  height: 30px;
}

.progress-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #EF9632 0%,
    #EF9632 50%,
    #ecf0f1 50%,
    #ecf0f1 100%
  );
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #EF9632;
}

@keyframes modalPopIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  animation: modalPopIn 0.3s ease-out forwards;
}

.modal-backdrop {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(239, 150, 50, 0.2);
}

.modal-header {
  border-bottom: none;
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: none;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 600;
  color: #2c3e50;
}

.modal .btn-primary {
  padding: 0.5rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  background-color: #EF9632;
  border-color: #EF9632;
}

.modal .btn-primary:hover {
  background-color: #e08a2a;
  border-color: #e08a2a;
}

.modal .close {
  color: #EF9632;
}

.modal .close:hover {
  color: #e08a2a;
}