body {
    font-family: 'Kilroy', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #222222;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

main {
    padding: 1rem;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

#searchType {
    font-family: 'Kilroy', sans-serif;
}

#searchInput {
    font-family: 'Kilroy', sans-serif;
    width: 300px;
    padding: 0.5rem;
    font-size: 1rem;
    margin-right: 10px;
}

#searchButton {
    font-family: 'Kilroy', sans-serif;
    padding: 0.5rem;
    font-size: 1rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-item a {
    text-decoration: none;
    color: #1a0dab;
    font-size: 1.2rem;
}

.result-item a:hover {
    text-decoration: underline;
}

.result-item p {
    margin: 0.5rem 0;
}

.loading {
    display: none;
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #333;
}

.no-results {
    display: none;
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #d9534f; /* Red color for emphasis */
}