* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e3f2fd;
    padding: 20px;
    color: #1565c0;
}

h1 {
    text-align: center;
    color: #0d47a1;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Form styling */
form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(13, 71, 161, 0.1);
}

label {
    display: inline-block;
    width: 25%;
    font-weight: bold;
    color: #1976d2;
}

input[type="text"],
input[type="number"],
select {
    width: 70%;
    padding: 8px 12px;
    border: 2px solid #90caf9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: #1976d2;
}

input[type="submit"],
.button {
    background-color: #1976d2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

input[type="submit"]:hover,
.button:hover {
    background-color: #1565c0;
}

/* Table styling */
table {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    background-color: white;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(13, 71, 161, 0.1);
}

thead {
    background-color: #1976d2;
    color: white;
}

th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #bbdefb;
}

tbody tr:hover {
    background-color: #e3f2fd;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Button link styling */
.button {
    display: block;
    width: fit-content;
    margin: 30px auto;
    text-align: center;
}