.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.loading-svg {
    width: 50px;
    height: 50px;
    animation: rotate 1s linear infinite;
}

.loading-circle {
    fill: none;
    stroke: #007bff;
    stroke-width: 4;
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 90;
    }
    50% {
        stroke-dashoffset: 45;
    }
    100% {
        stroke-dashoffset: 90;
    }
}

/* Mensagem animada */
.message {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.message.success {
    background-color: #4CAF50;
    color: white;
}

.message.error {
    background-color: #F44336;
    color: white;
}
