.progress-card {
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.progress-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.progress-bar-wrapper {
    background: #333;
    border-radius: 5px;
    height: 20px;
    margin: 10px 0;
}
.progress-bar {
    height: 100%;
    background: #2a7;
    border-radius: 5px;
}
#add-task-btn {
    padding: 8px 12px;
    margin: 15px;
    cursor: pointer;
}
#task-modal {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 999;
}
#task-modal input {
    width: 100%;
    padding: 6px;
    margin: 5px 0;
}
#task-modal button {
    padding: 6px 12px;
    margin-top: 5px;
}

		