body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.container {
    background-color: white;
    padding: 2%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 92%;
	max-width: 800px;
	margin-top: 2%;
}

h1 {
    text-align: center;
	font-size: 1.5rem;
	margin: 0px;
	margin-top: 15px;
}

form {
    display: flex;
    margin-bottom: 20px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
}

button {
    padding: 5px;
    border: none;
    background-color: #28a745;
    color: white;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

/* Stil für den Installations-Button */
.install-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;  /* Abstand nach oben */
    display: block;  /* Damit der Button eine eigene Zeile bekommt */
    width: auto;  /* Passe die Breite an den Inhalt an */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 20px;
}

.install-button:hover {
    background-color: #218838;
}

.export-button, .import-button, .del-button
{
	margin-bottom: 25px;
	margin-left: 25px;
}

.read-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
    display: block;
    width: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.read-button:hover {
    background-color: #0056b3;
}


ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 0.8rem;
}

li.completed {
    text-decoration: line-through;
    color: #999;
}

input[type="checkbox"] {
    margin-right: 10px;
}

#todoList li label{
	width: 80%;
	display: block;
}
