.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5); /* Yarı şeffaf arka plan */
  backdrop-filter: blur(5px); /* Arka planı bulanıklaştırır */
  -webkit-backdrop-filter: blur(5px); /* Safari için destek */
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #0d6efd; /* Mavi renk */
  box-shadow: 0 0 15px rgba(0, 0, 255, 0.6); /* Mavi gölge */
  animation: rotate-circle 2s linear infinite; /* Dönme animasyonu */
}

/* İç kısmın dönmesi için ek animasyon */
.pace .pace-progress .inner-circle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0d6efd; /* Mavi renk */
  animation: rotate-inner 2s linear infinite; /* İç kısmın döngüsü */
}

/* Dış çerçevenin döngüsü */
@keyframes rotate-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg); /* 360 derece dönecek */
  }
}

/* İç çubuğun döngüsü */
@keyframes rotate-inner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg); /* İç çubuğun zıt yönde dönmesini sağlıyoruz */
  }
}