/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

header {
    background-color: #dc3545; /* Crimson Red */
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

/* Back Button styles removed */

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.task-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

input, select, button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #b02a37;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

li {
    background: #f9f9f9;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #dc3545;
}

.task-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
}

.task-icons img:hover {
    opacity: 1;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}