/* Базовые геометрические свойства ссылки */
.wp-sig-link {
    text-decoration: none;
    cursor: help;
}

/* Базовые свойства позиционирования всплывающего окна */
.wp-sig-tooltip {
    position: absolute;
    display: none;
    padding: 10px 14px;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 380px;
    width: max-content;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    pointer-events: none;
    box-sizing: border-box;
    line-height: 1.5;
}

.wp-sig-hash-label {
    font-weight: bold;
}

.wp-sig-hash-value {
    font-family: 'Courier New', Courier, monospace;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 11px;
    word-break: break-all;
}

/* Геометрия мобильного окна по центру экрана */
@media screen and (max-width: 480px) {
    .wp-sig-tooltip {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 340px !important;
        margin: 0 !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        pointer-events: auto;
        padding: 16px 20px !important;
        border: 1px solid rgba(255,255,255,0.1);
    }
}
