body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 10px;
    background-color: #121212; /* Dunkler Hintergrund */
    color: #ffffff; /* Heller Text */
}

h1 {
    text-align: center;
    color: #ffffff;
}

#task-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.task-button {
    background-color: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 10px;
    width: 200px;
    height: 50px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.task-button i {
    margin-right: 10px;
}

.task-button.completed {
    background-color: #2e7d32; /* Dunkles Grün */
    border-color: #1b5e20;
    color: #ffffff;
}

#add-shopping {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#shopping-input {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    background-color: #1e1e1e;
    color: #ffffff;
    border: 1px solid #333333;
}

#add-shopping-button {
    padding: 10px;
    font-size: 16px;
    margin-left: 10px;
    background-color: #1e1e1e;
    color: #ffffff;
    border: 1px solid #333333;
}

#shopping-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.shopping-item {
    background-color: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 10px;
    width: 200px;
    height: 50px;
    margin: 10px;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shopping-item .delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 16px;
    color: #888;
    cursor: pointer;
}

#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

#modal h2 {
    margin-top: 0;
}

#modal label {
    font-size: 18px;
}

#modal button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #444444;
}