/* Tüm ekranı kaplayan yükleme ekranı */
#loading-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem !important;
  font-weight: bold;
  color: #333;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loading-screen h1 {
  font-size: 1.1rem !important;
}

/* Dönen animasyonlu yuvarlak */
.opening-loader {
  width: 50px !important;
  height: 50px !important;
  border: 5px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 10px;
}

/* Döndürme animasyonu */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Yükleme bittiğinde yavaşça kaybolma efekti */
.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
