/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Verdana;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Header Styling */
header {
    background-color: black;
    color: white;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
    width: 100%;
}

header h1 {
    font-size: 2.2em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin-top: 5px;
}

/* Page Container */
.page {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Input and Button Styling */
input[type="text"],
input[type="password"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    width: 100%;
    padding: 12px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
}

button:hover {
    background-color: black;
}

/* Task List Styling */
#taskList {
    margin-top: 30px;
    text-align: left;
}

.task {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

button.edit,
button.delete {
    margin-top: 10px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

button.edit {
    background-color: #ffc107;
    color: black;
}

button.edit:hover {
    background-color: #e0a800;
}

button.delete {
    background-color: #dc3545;
    color: white;
}

button.delete:hover {
    background-color: #c82333;
}
/* Responsive Design for Mobile Devices */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .page {
        padding: 20px;
    }
}
