body {
    font-family: Arial, sans-serif;
    background: #abccec;
    margin: 0;
}

header {
    background: #101f34;
    color: white;
    padding: 15px;
    text-align: center;
}

.container {
    width: 90%;
    margin: 20px auto;
}

select, button {
    padding: 10px;
    font-size: 14px;
    margin-right: 5px;
}

button {
    cursor: pointer;
    background: #263a63;
    color: white;
    border: none;
}

button:hover {
    background: #00071f;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgb(93, 127, 174);
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background: #101f34;
    color: white;
}

h3 {
    margin-top: 30px;
}

