/* CSS styling for the table */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    position: relative;
    top: 15%;
    padding: 8px;;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* CSS styling for the form */
form {
    margin-bottom: 20px;
}

input[type="text"],
input[type="date"],
input[type="submit"] {
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.div1 {
    position: relative;
    top: 2%;
}

/* CSS styling for the delete button */
.delete-button {
    text-decoration: none;
    background-color: #45a049;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

.delete-button:hover {
    background-color: #f44336;
}
