body{
    font-family: Arial, sans-serif;
    background-color: #e6f0ff;
}

.container{
    width: 350px;
    margin: 80px auto;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

h3{
    color: #0056b3;
    margin-bottom: 20px;
}

label{
    color: #0056b3;
    text-align: left;
}

input[type=text]{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #99c2ff;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type=submit]{
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

input[type=submit]:hover{
    background-color: #0056b3;
}

.table-container{
    width: 700px;
    margin: 30px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

table{
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

table th{
    background-color: #007bff;
    color: white;
    padding: 12px;
    text-align: center;
}

table td{
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #d6e8ff;
    color: #444;
}

table tr:nth-child(even){
    background-color: #f0f7ff;
}

table tr:hover{
    background-color: #dbeeff;
    transition: 0.2s;
}
