/* Spinner uchun style */
.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(214, 209, 209, 0.8);
    z-index: 1000000000000000000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.content {
  padding: 20px;
}

.content h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.content li {
  margin-bottom: 8px;
  font-size: 18px;
}

.error-message {
  text-align: center;
  color: red;
  font-size: 20px;
  margin-top: 20px;
}
