body {
    font-family: sans-serif;
    margin: 0;
    background: #f7f7f7;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

#search-container {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    width: 80%;
    max-width: 800px;
}

#search-input {
    flex: 1;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#search-btn {
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

#search-results {
    width: 80%;
    max-width: 800px;
    max-height: 600px;     /* About 30 results visible */
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 8px;
}

.result-item {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

.result-item:last-child {
    border-bottom: none;
}