/* =========================================
   CRYPTO TIP JAR
   ========================================= */
.tip-container {
    margin-bottom: 1.5rem;
    width: 100%;
}

.crypto-codeblock {
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: monospace, monospace;
    font-size: 0.85em;
    color: inherit;
    text-align: center;
    word-break: break-all;
    line-height: 1.4;
    user-select: all;
    margin-top: 0.5rem; /* Separates the code block from the button */
}

/* =========================================
   EXPANDABLE CRYPTO ADDRESSES
   ========================================= */
.crypto-details {
    margin-top: 0.5rem;
    text-align: center;
}

.crypto-details summary {
    font-size: 0.85em;
    color: #94a3b8; /* Muted slate color */
    cursor: pointer;
    user-select: none;
    outline: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    display: inline-block; /* Centers the summary arrow nicely */
}

.crypto-details summary:hover {
    color: #ffffff;
}

.crypto-details .crypto-codeblock {
    margin-top: 0.25rem; /* Tightens the gap inside the expanded box */
}