* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 80%;
max-width: 800px;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
form input, form button {
padding: 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
background-color: #87CEEB;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}
form button:hover {
background-color: #00BFFF;
}
table {
width: 100%;
margin-top: 20px;
border-collapse: collapse;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 12px;
text-align: center;
}
th {
background-color: #87CEEB;
color: white;
}
a {
color: #00BFFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}