.etls-search-container {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
}

#exact-title-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#search-loading-indicator {
    display: none; /* JavaScript will toggle this */
    text-align: center;
    padding: 10px;
    color: #777;
    margin-top: 8px;
    font-style: italic;
}

#exact-title-search-results {
    margin-top: 10px;
    border: 1px solid #eee;
    background-color: #fff;
    max-height: 300px; /* Limit height and make scrollable if many results */
    overflow-y: auto;
}

#exact-title-search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#exact-title-search-results li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease-in-out;
}

#exact-title-search-results li:last-child a {
    border-bottom: none;
}

#exact-title-search-results li a:hover {
    background-color: #f5f5f5;
    color: #000;
}

#exact-title-search-results p {
    padding: 10px 15px;
    color: #777;
    margin: 0;
}

.etls-result-excerpt {
    color: #2e8b57; /* Sea Green color for better readability */
    font-size: 14px;
    line-height: 1.4;
}