
.encrypted-input {
    position: relative;
}

.encrypted-input::after {
    content: 'Address is encrypted';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Mix', serif;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
    text-align: center;
    z-index: 5;
}

.encrypted-input textarea {
    filter: brightness(0.5);
}

.encrypted-input::after {
    opacity: 1;
}

.encrypted-input textarea {
    background-color: #1a1618;
    cursor: not-allowed;
}

