body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #d67b63;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
}

.container {
    height: 70vh;
    width: 550px;/* Increased the size of the box */
    margin: 0 auto;
    padding: 10px;
    border: 2px solid black;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 20px;
    color: #007BFF;
}

.task-form {
    display: flex;
    flex-direction: column; /* Changed to column to stack input and button */
    justify-content: center; /* Center aligned the elements */
    align-items: center;
    margin-bottom: 20px;
}

input[type="text"] {
    flex: 1;
    width: 200px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 25px; /* Added some margin to separate from the button */
}

#start-time, #end-time{
    margin-bottom: 20px;
    height:28px;
    width: 80px;
}

button {
    margin: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 9px 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

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

li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid #ccc;
}

.delete-task {
    color: red;
    cursor: pointer;
}
