/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.search-box {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.search-overlay.active .search-box {
    transform: translateY(0);
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    gap: 0.75rem;
}
.search-input-wrapper i {
    color: #94a3b8;
    font-size: 1.2rem;
}
.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: inherit;
    color: #1e293b;
}
.search-input-wrapper input::placeholder {
    color: #94a3b8;
}
.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}
.search-hint {
    text-align: center;
    color: #94a3b8;
    padding: 2rem;
    font-size: 0.95rem;
}
.search-section h4 {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.search-result-item:hover {
    background: #f1f5f9;
}
.search-result-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f1f5f9;
}
.search-result-info {
    display: flex;
    flex-direction: column;
}
.search-result-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}
.search-result-meta {
    font-size: 0.8rem;
    color: #64748b;
}
