.vcard {
    margin: 5px 0;
    border: 1px solid var(--field-border-color);
    padding: 5px 10px;
    position: relative;
    transition: all 0.4s;
    min-height: var(--field-height);
    border-width: 1px 1px 1px 6px;
    border-radius: var(--border-radius);
    align-content: center;
}

.vcard-actions {
    gap: 5px;
    inset: 0;
    display: flex;
    opacity: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.vcard-actions button {
    font-size: 12px !important;
    min-height: 25px !important;
}

.vcard:hover .vcard-actions {
    opacity: 1;
}

