body{ font-family: Arial, Helvetica, sans-serif; font-size: 15px;}

table {
    border-collapse: collapse;
    border-radius: 20px 20px 20px 20px; 
}

table th, table td{
    font-size: 15px;
}

th, td{
    padding: 8px;
}

/*tr:nth-child(even){background-color: #f2f2f2}*/

/*Buttons format*/
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 7px 14px;
    background-color: #0ea5fe;
    color: #fff;
    border: 1px solid #078de2;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
    background-color: #078de2;
}

/*Dropdown list format*/
select {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 6px 10px;
    min-width: 150px;
    border: 1px solid #888;
    border-radius: 4px;
    background-color: #fff;
    color: #222;
    cursor: pointer;
    margin: 0 5px;
}

select:focus {
    outline: none;
    border-color: #0ea5fe;
    box-shadow: 0 0 3px rgba(14, 165, 254, 0.4);
}

select option {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #222;
    background-color: #fff;
}

/*Text fields format*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="tel"],
input[type="search"],
input[type="url"] {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 15px;
    padding: 6px 8px;
    border: 1px solid #aaa;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus {
    outline: none;
    border-color: #0ea5fe;
    box-shadow: 0 0 3px rgba(14, 165, 254, 0.4);
}

img {
    border-radius: 8px;
}