body {
    background-color: #f0f2f5;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-image: url('/static/vet.jpg'); /* dikkat: url doğru yazıldı */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}

#loader {
    position: fixed;
    inset: 0;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader img {
    width: 80px;
    height: 80px;
    animation: rotate 1s linear infinite;
}

/* Opsiyonel dönen yükleme animasyonu */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
