/* Styles pour le loader */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.loading-spinner > div {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border-radius: 50%;
    background-color: #E66C2C;
    animation: bounce 0.9s infinite ease-in-out;
}

.loading-spinner > div:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-spinner > div:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0.3);
    }
    50% {
        transform: scale(1);
    }
}