/* Admin Bar Styles */
#wpadminbar .advus-search-container {
    padding: 5px 10px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

#wpadminbar #advus-search-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 4px;
    height: 24px;
    line-height: normal;
    padding: 0 8px;
    color: #333;
    width: 200px;
    font-size: 13px;
}

#wpadminbar #advus-search-input:focus {
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px #2271b1;
}

#advus-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 99999;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
}

#advus-search-results.active {
    display: block;
}

.advus-result-item {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    transition: background 0.2s;
}

.advus-result-item a {
    text-decoration: none;
    color: #333 !important;
    display: block;
}

.advus-result-item:hover {
    background: #f6f7f7;
}

.advus-result-item:last-child {
    border-bottom: none;
}

/* Switch Back Button */
.advus-switch-back-btn {
    background: #d63638 !important; /* WordPress red */
}

.advus-switch-back-btn:hover {
    background: #b32d2e !important;
}

.advus-switch-back-btn a {
    color: #fff !important;
    font-weight: 600;
}
