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

.container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.logo {
    max-height: 50px; /* Adjust as needed */
    
}


h1 {
    font-size: 32px;
    color: #333;
    text-align: center;
}

input[type="text"] {
    width: calc(100% - 80px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

li:last-child {
    border-bottom: none;
}

button.complete {
    position: absolute;
    right: 1px;
    top: 10px;
    background-color: #2196f3;
    padding: 5px 10px;
}

button.complete:hover {
    background-color: #1e88e5;
}

button.delete {
    position: absolute;
    right: 40px;
    top: 10px;
    background-color: #f44336;
    padding: 5px 10px;
}

button.delete:hover {
    background-color: #e53935;
}

.completed {
    text-decoration: line-through;
    color: #aaa;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 8px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
