.key-reveal {
    display: grid;
    gap: 12px;
}

.key-reveal > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.key-reveal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
}

.key-reveal-row code {
    color: var(--text);
    user-select: all;
}

.action-menu-panel {
    width: 250px;
    top: auto;
    right: 0;
    bottom: 46px;
}

.key-unavailable {
    padding: 9px 10px;
    color: var(--muted);
    font-size: 12px;
    white-space: normal;
}

@media (max-width: 640px) {
    .key-reveal > div:first-child,
    .key-reveal-row {
        align-items: stretch;
        flex-direction: column;
    }
}
