/* Eventuali personalizzazioni */
.card {
    border-radius: 12px;
}
#uploadProgress {
    font-size: 0.85rem;
}


/* Limita altezza della lista task */
#tasksContainer {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Stile scrollbar (opzionale, solo per estetica) */
#tasksContainer::-webkit-scrollbar {
    width: 8px;
}
#tasksContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
#tasksContainer::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
#tasksContainer::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* La tabella rimane compatta */
.table {
    margin-bottom: 0;
}


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