.mkcd-search-suggestions {
    position: absolute;
    z-index: 9999;
    margin-top: 4px;
    width: 100%;
    overflow-y: auto;
    background: rgba(17, 17, 17, 0.56);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    padding: 4px 0;
    font-size: 14px;
}

/* Items */
.mkcd-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mkcd-suggestion-item:last-child {
    border-bottom: none;
}

.mkcd-suggestion-item:hover {
    background: rgba(255,255,255,0.06);
}

.mkcd-suggestion-title {
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.mkcd-suggestion-meta {
    color: #aaa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Wrapper um das Suchfeld – Referenz für absolute Positionierung */
.mkcd-search-wrapper {
    position: relative;
    display: inline-block;
    width: 440px;
}

/* Responsive Feinheiten */
@media (max-width: 600px) {
    .mkcd-search-suggestions {
        max-width: 100%;
        width: 100%;
    }
}
