
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.loading-content {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.spinner-border-lg {
    width: 3rem;
    height: 3rem;
}

/* Animações para os badges de status */
.batch-status {
    transition: all 0.3s ease;
}

.batch-status.bg-warning {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Estilo para a lista no estilo Trade History */
.table-borderless tbody tr.bg-light {
    border-radius: 10px;
}

.table-borderless tbody tr.bg-light td {
    padding: 1rem;
}

/* Log de processamento */
#processingLog {
    background: #1a1a1a;
    border: 1px solid #333;
}

#processingLog div:last-child {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress bar animada */
.progress-modern .progress-bar {
    transition: width 0.5s ease;
}