/* 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;
}
