.pill {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

/* Difficulty pills */
.easy-pill {
    background-color: #4caf50;
}

.medium-pill {
    background-color: #ff9800;
}

.hard-pill {
    background-color: #f44336;
}

/* Status pills */
.status-done {
    background-color: #4caf50;
}

.status-in-progress {
    background-color: #ffeb3b;
    color: #000;
}

.status-not-started {
    background-color: #9e9e9e;
}