
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
}

.input-container, .select-container {
    margin-bottom: 20px;
}

input[type="text"] {
    width: 300px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

select {
    width: 250px;
    padding: 10px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

select:focus {
    background-color: #e6f7ff;
    outline: none;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #50cdd1;
    color: white;
    font-size: 1.1em;
}

td {
    font-size: 1.05em;
    color: #555;
}

tr:hover {
    background-color: #f5f5f5;
}

.empty-message {
    font-size: 1.2em;
    color: #888;
    margin-top: 20px;
}