 /* Address elements (required for positioning) */
.copyable-address {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: text; /* Allow text selection if needed */
}

/* Checkmark styling (hidden by default) */
.copy-checkmark {
    position: absolute;
    display: none;
    width: auto;
    height: 2em;
    margin-left: 8px;
    pointer-events: none;
    user-select: none;
    z-index: 100;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.2s ease;
    transform: scale(0.8);
}

/* Visible state (triggered by JS) */
.copy-checkmark--visible {
    display: block;
    opacity: 1;
    transform: scale(1);
}

/* Optional: Add a subtle pulse effect */
@keyframes checkmark-pulse {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.copy-checkmark--visible {
    animation: checkmark-pulse 0.3s ease;
}

.crypto-address {
    word-break: break-all !important;
    overflow-wrap: anywhere;
    display: block;
    max-width: 100%;
    margin-left: 1em;   
}

.crypto-address::before { /*  for negative margin and therefore first-line alignment */
    content: '';
    display: block;
    margin-left: -2em;
}


/* Hover effects */
/* #btc-pnym-address:hover, #btc-ln-address:hover, #openalias-address:hover, #fio-address:hover, .crypto-address:hover, .fiat-address:hover, .ltc-address:hover, .arr-raw-address:hover, .paypal-address:hover {
    color: #FFB83D;
    cursor: pointer;
} withdrawn as possibly misleading because it looks like link */ 

#btc-pnym-ticker {
    color: #ff6200;
}

#ltc-ticker {
    background-color: var(--silver-medium);
    color: var(--primary-color);
    padding: 1px 5px;           /* Optional: Add spacing around text */
    border-radius: 3px; 
}

#btc-ln-ticker {
    color: #ff8c00;
}

#oa-ticker {
    color: #0892d0;
}

#fio-ticker {
    color: #9D008F;
}

#arrr-ticker {
    color: #BB9645;
}

#xmr-ticker {
    background-color: #FFA500;  /* Orange */
    color: floralwhite;
    padding: 1px 5px;           /* Optional: Add spacing around text */
    border-radius: 3px; 
}

#trocador-ticker {
    color: #EE4B2B; /* Bright red */
}

.single-word {
    white-space: nowrap;
}

#paypal1-ticker {
    color: #00457C;
}

#paypal2-ticker {
    color: #0079C1;
}