/* styles.css */
.tpc-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

.tpc-container h1, .tpc-container h2 {
    color: #333;
}

.tpc-timer, .tpc-task-list, .tpc-metrics {
    margin-bottom: 20px;
}

#tpc-time-display {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

#tpc-tasks {
    list-style-type: none;
    padding: 0;
}

#tpc-tasks li {
    background-color: #f9f9f9;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#tpc-tasks li button {
    background-color: #ff4d4d;
    padding: 5px 10px;
    font-size: 0.8em;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#tpc-tasks li button:hover {
    background-color: #cc0000;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}