﻿/* Loader ekranı */
.loader {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    display: flex; /* Sadece JS ile yönetiyoruz */
}

/* Spinner */
.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#3498db, #f3f3f3);
    animation: spin 1s linear infinite;
}

/* Döndürme animasyonu */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Yükleniyor metni */
.loader p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}
