.loader {
    border-top-color: #3498db;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
}

.progress-bar {
    animation: progress 2s linear infinite;
}
.progress{
    height: 50px!important;
}


/* Estilos personalizados para o modal */
.modal-header, .modal-footer {
    border: none;
}

.modal-title {
    font-size: 1.25rem;
}

.modal-body p {
    margin-bottom: 0.5rem;
}

.modal-body h5 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body ul {
    padding-left: 20px;
}