.ukv-btn-table {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    max-width: 360px;
    aspect-ratio: 3.5 / 1;

    padding: 0 16px;

    background: linear-gradient(180deg, #2f6fa3 0%, #1e3f5a 100%);
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;

    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);

    text-decoration: none;

    box-shadow: 0 2px 6px rgba(0,0,0,0.2);

    transition: all 0.2s ease;
}

.ukv-btn-icon {
    width: 24px;
    height: 24px;
    background: #ffffff;

    mask: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">\
<rect x="3" y="4" width="18" height="16" rx="2" ry="2" fill="black"/>\
<line x1="3" y1="10" x2="21" y2="10" stroke="white" stroke-width="2"/>\
<line x1="3" y1="16" x2="21" y2="16" stroke="white" stroke-width="2"/>\
<line x1="9" y1="4" x2="9" y2="20" stroke="white" stroke-width="2"/>\
<line x1="15" y1="4" x2="15" y2="20" stroke="white" stroke-width="2"/>\
</svg>') no-repeat center / contain;

    flex-shrink: 0;
}

.ukv-btn-table:hover {
    border: 2px solid #ffffff;
    background: linear-gradient(180deg, #3c82b8 0%, #255a7c 100%);
    transform: translateY(-1px);
}

.ukv-btn-table:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.ukv-btn-text {
    white-space: nowrap;
}