html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0px;
}


/* Loading ekranının stilini düzenle */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Siyah arkaplan (saydam) */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Yükleniyor ikonunun stilini düzenle */
.loading-icon {
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-top: 5px solid #000000;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Yükleniyor ikonuna dönme animasyonu ekle */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}