/* Kum saati animasyonu */
.hourglass-icon {
    font-size: 24px;
    display: block;
    animation: rotate-hourglass 2s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes rotate-hourglass {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Loading bölümü stil */
.loading {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading > div:last-child {
    margin-top: 10px;
    font-size: 16px;
}
