.quick-open-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
}

.quick-open-overlay.is-open {
    display: flex;
}

.quick-open-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.quick-open-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.quick-open-search-icon {
    color: #6c757d;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-open-input {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background: transparent;
}

.quick-open-input::placeholder {
    color: #adb5bd;
}

.quick-open-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    flex-shrink: 0;
}

.quick-open-close:hover,
.quick-open-close:focus {
    background: #f1f3f5;
    color: #212529;
    outline: none;
}

.quick-open-results {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    max-height: 320px;
    overflow-y: auto;
}

.quick-open-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    cursor: pointer;
    color: #212529;
    text-decoration: none;
}

.quick-open-result:hover,
.quick-open-result.is-active {
    background: #f8f9fa;
}

.quick-open-result.is-active {
    background: #e7f1ff;
}

.quick-open-result-icon {
    color: #6c757d;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-open-result-label {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-open-result-label mark {
    background: #fff3bf;
    color: inherit;
    padding: 0 0.1em;
    border-radius: 2px;
}

.quick-open-empty {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9375rem;
}

.quick-open-hidden {
    display: none;
}
