h1 {
    text-align: center;       /* Center the title */
    color: #2c3e50;           /* Dark bluish color, professional */
    margin-top: 30px;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f6f8;   /* Soft light gray-blue background */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;             /* Add some horizontal padding */
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;                  /* Space between input, select, and button */
    margin-top: 20px;
    flex-wrap: wrap;             /* Wrap on smaller screens */
}

#searchInput {
    padding: 10px;
    font-size: 16px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#searchType {
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

#searchBtn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #3498db;  /* Blue button */
    color: white;
    cursor: pointer;
}

#searchBtn:hover {
    background-color: #2980b9;  /* Darker blue on hover */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #34495e; /* Dark bluish header */
    color: white;
}

tr:nth-child(even) {
    background-color: #ecf0f1; /* Very light gray for even rows */
}

tr:hover {
    background-color: #dfe6e9; /* Subtle hover effect */
}
