*{
    text-align: center; 
}

p {
    font-family: sans-serif;
    font-size: 24pt;
    color: Purple;
}

h1 {
    font-family: fantasy;
    font-size: 48pt;
    color: Purple;
}

form {
    font-family: sans-serif;
    font-size: 12pt;
    background-color: lightgrey;
    padding: 15px;
    width: auto;
    height: auto;
    display: inline-block;
    text-align: left;    
}

label {
    width: 150px;
    display: inline-block;
    text-align: right;
    margin-right: 10px;
    text-align: left;
    display:flex;
    flex-direction:column;
}

input[type=text], select {
    width: 400px;
    padding: 15px;
    margin: 5px;
    border: 1px solid grey;
    border-radius: 3px;
    text-align: left;
}

input[type=submit] {
    width: 200px;
    background-color: blue;
    color: white;
    padding: 15px;
    margin: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

input[type=button] {
    width: 200px;
    background-color: grey;
    color: white;
    padding: 15px;
    margin: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: lightblue;
}

input[type=button]:hover {
    background-color: black;
}

.searched{
    background-color: blue;
}

table {
    font-family: sans-serif;
    font-size: 12pt;
    background-color: lightgrey;
    padding: 15px;
    width: auto;
    height: auto;
    display: inline-block;
    text-align: left;    
}

th{
    font-family: sans-serif;
    font-size: 16pt;
    color: purple;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}