body {
    font-family: Arial, Helvetica, sans-serif;
    background: #1c1f26;
    color: #eee;
    margin: 30px;
    line-height: 1.5;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
    background: #2a2e38;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

th {
    background: #3c8d2f;
    color: white;
    text-align: left;
    padding: 12px;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #444;
}

tr:nth-child(even) {
    background: #323744;
}

tr:hover {
    background: #41485a;
}

table td:first-child {
    width: 50px;
    text-align: center;
    font-weight: bold;
}

a {
    color: #5db9ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Status colours */
.status-done {
    color: #57d957;
    font-weight: bold;
}

.status-todo {
    color: #ffb347;
    font-weight: bold;
}

.download-section {
    margin-top: 20px;
}

.download-btn {
    display: inline-block;
    background: #3c8d2f;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 24px;
	margin-right: 12px;
    border-radius: 4px;
    border: 1px solid #4ea83f;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: #4ea83f;
    text-decoration: none;
}

.download-btn:active {
    transform: translateY(1px);
}