.klipy-inline-panel .inner {
    padding-top: 12px;
}

.klipy-inline-header {
    margin-bottom: 12px;
}

#klipy-search {
    width: 100%;
    max-width: 420px;
    padding: 8px 10px;
    border: 1px solid #c5cdd8;
    border-radius: 4px;
    box-sizing: border-box;
}

#klipy-results {
    max-height: 340px;
    overflow-y: auto;
    padding: 4px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, 80px);
    grid-auto-rows: 80px;
    gap: 8px;
    justify-content: start;
    align-content: start;
}

.klipy-card {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    padding: 0;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.klipy-card img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.klipy-card:hover,
.klipy-card:focus,
.klipy-card.is-armed {
    border-color: #4c5d77;
    box-shadow: 0 0 0 2px rgba(76, 93, 119, 0.18);
    outline: none;
}

.klipy-card.is-armed::after {
    content: attr(data-tap-again);
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    padding: 4px 2px;
    border-radius: 4px;
}

.klipy-footer {
    padding-top: 12px;
    text-align: center;
}

.klipy-message {
    margin: 0;
    color: #a00;
    font-weight: bold;
}

@media (max-width: 700px) {
    #klipy-results {
        max-height: 300px;
        justify-content: center;
    }

    #klipy-search {
        max-width: 100%;
    }
}