/* styles/search.css - Search Styles */

.search-container {
    position: relative;
    margin-bottom: 10px;
}

#clubSearch {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

#clubSearch:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.search-suggestion:hover {
    background-color: #f5f5f5;
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion.highlighted {
    background-color: #e8f5e8;
}

.suggestion-name {
    font-weight: bold;
    color: #333;
}

.suggestion-details {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.suggestion-rank {
    font-weight: bold;
    color: #4CAF50;
}