/* Global Search Styles */
.app-search {
    position: relative !important;
}

.search-results {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    min-width: 350px;
    width: 100%;
}

.search-results-list {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-loading,
.search-no-results,
.search-error {
    padding: 15px;
    text-align: center;
}

.search-result-item .badge-sm {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
}

