/* Federal Signal Search Styles */

/* Search form styling */
#search {
    position: relative;
}

/* Search suggestions dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.suggestion-category {
    font-size: 0.85em;
    color: #666;
}

/* Search results overlay */
.search-results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-results-container {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    max-height: 80vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-results-header {
    background: #e51937;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-results-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.close-search {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-search:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-results-content {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.search-result-item h3 a {
    color: #e51937;
    text-decoration: none;
}

.search-result-item h3 a:hover {
    text-decoration: underline;
}

.result-category {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 8px;
    font-weight: bold;
}

.search-result-item p {
    margin: 0;
    color: #555;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-results-overlay {
        padding: 10px;
    }

    .search-results-container {
        max-height: 90vh;
    }

    .search-results-header {
        padding: 15px;
    }

    .search-results-header h2 {
        font-size: 1.3em;
    }

    .search-results-content {
        padding: 15px;
    }
}