/**
 * Custom styles for catalogsearch module in versuch2 theme
 */

/* Search result container */
.search-result-container {
    padding: 20px 0;
}

.search-result-count {
    color: #6c757d;
    font-size: 14px;
}

.search-term {
    font-size: 14px;
    color: #4a4a4a;
}

/* Advanced search form */
.form.search.advanced .field {
    margin-bottom: 20px;
}

.form.search.advanced .field .label {
    font-weight: 500;
    margin-bottom: 8px;
}

/* No results message */
.alert-warning i.bi-search {
    color: #fd7e14;
}

/* Advanced search link */
.advanced-search-link a {
    color: #0d6efd;
    font-size: 14px;
    transition: color 0.3s;
}

.advanced-search-link a:hover {
    color: #0a58ca;
}

/* Trending searches section for no results */
.trending-searches .list-group-item {
    border-left: none;
    border-right: none;
    transition: background-color 0.3s;
}

.trending-searches .list-group-item:hover {
    background-color: #f8f9fa;
}

.trending-searches .bi {
    color: #fd7e14;
}

/* Search terms table on advanced search no results */
.search-terms .table {
    margin-bottom: 0;
}

.search-terms .table td {
    padding: 10px 15px;
}

@media (max-width: 767px) {
    .search-result-container {
        padding: 15px 0;
    }
    
    .form.search.advanced .field {
        margin-bottom: 15px;
    }
}