body {
    font-family: Arial, sans-serif;
    background: #f2f9ff;
    color: #333;
    margin: 20px;
}

h2, h3 {
    color: #1a73e8;
}

table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto;
    box-shadow: 0 0 10px #ccc;
}

th, td {
    padding: 10px;
    border: 1px solid #888;
    text-align: center;
}

th {
    background-color: #1a73e8;
    color: white;
}

form {
    background-color: #fff;
    padding: 20px;
    width: 60%;
    margin: auto;
    box-shadow: 0 0 10px #aaa;
    border-radius: 8px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="color"],
input[type="file"],
input[type="range"] {
    width: 60%;
    padding: 6px;
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type="submit"],
input[type="reset"] {
    background-color: #1a73e8;
    color: white;
    padding: 8px 16px;
    border: none;
    margin: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
}
