form {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

input[type=text], input[type=date], input[type=time], select {
    width: 100%;
    display: inline-block;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: large;
}

input[type=submit], input[type=button] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    font-size: large;
}

table, td, th {
    border: 0px;
    border-collapse: collapse;
    padding: 8px;
}

table {
/*     width: 100%; */
}

tr:nth-child(even) {
    background-color: #dddddd;
}

input[type=submit]:hover {
    background-color: #45a049;
}
