/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #222;
    color: #ddd;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.container {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: rgba(232, 217, 217, 0.1);
    backdrop-filter: blur(5px);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #ddd;
    font-size: 16px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #666;
}

th {
    background-color: rgba(50, 50, 50, 0.8);
    color: #fff;
    font-weight: bold;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin-left: 5px;
}

tr.done {
    background-color: lightgreen;
}
