body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #222;
    overflow: hidden;
    padding: 10px 0;
    text-align: center;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    background-color: #555;
}

.content {
    max-width: 900px;
    margin: 30px auto;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
}

h2 {
    margin-top: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 8px;
}

.search-wrapper {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

#searchInput {
    width: 400px;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s;
}

#searchInput:focus {
    border-color: #007bff;
}

.suggestions-box {
    position: absolute;
    background: white;
    width: 400px;
    max-height: 250px;
    overflow-y: auto;
    list-style: none;
    padding: 10px;
    border: 1px solid #ccc;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.suggestions-box li {
    padding: 6px 10px;
    cursor: pointer;
}

.suggestions-box li a {
    color: #0033cc;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.suggestions-box li:hover {
    background-color: #f5f5f5;
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

.subtext {
    color: #777;
    font-size: 0.9em;
    margin-left: 5px;
}

