body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #333;
}

a {
    color: #0077cc;
    text-decoration: none;
    margin-right: 10px;
}

a.logout {
    float: right;
    color: #c00;
}

form input, form textarea, form select, button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    font-size: 1em;
}

button {
    background-color: #0077cc;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #005fa3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #f0f0f0;
}

.button {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    margin: 15px 0;
    border-radius: 4px;
    text-decoration: none;
}

.button:hover {
    background-color: #218838;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input[type="checkbox"] {
    width: auto;
    display: inline-block;
    margin-right: 5px;
}

label {
    font-weight: bold;
}

select {
    height: 40px;
}
.logo-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 50px;
}
.remove-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: red;
    cursor: pointer;
    margin-top: 5px;
}
textarea#done {
    min-height: 220px;
}
