body {
  font-family: "Poppins", sans-serif;
}

button {
  cursor: pointer;
}
.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.scrollbar::-webkit-scrollbar-track {
  border-radius: 100vh;
  background: #e4e8ee;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #0e2337;
  border-radius: 100vh;
}

.active-menu-item {
  background-color: #183048 !important;
  color: white !important;
  border-color: #183048 !important;
}

.iti__selected-dial-code {
  font-size: 14px;
}
.iti__search-input {
  height: 48px;
  font-size: 14px;
}
.iti__search-input:focus {
  outline-color: #00b7e9;
}
.iti__country-name {
  font-size: 14px;
}
.iti__dial-code {
  color: #00b7e9 !important;
  font-weight: 600;
}

@keyframes select {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Parçacık animasyonu */
@keyframes particles {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(var(--direction));
  }
}

/* Parçacıkların kendisi */
.radio-pill::before,
.radio-pill::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: #00b7e9;
  opacity: 0;
}

.radio-pill::before {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.radio-pill::after {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Checked olduğu anda parçacıkları çalıştır */
.peer:checked + .radio-pill::before {
  --direction: -10px;
  animation: particles 0.5s ease forwards;
}

.peer:checked + .radio-pill::after {
  --direction: 10px;
  animation: particles 0.5s ease forwards;
}

.tab-panel {
  min-height: 60vh;
}
