.trc20-info {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.trc20-info p {
    margin: 0;
}

.trc20-usdt-amount {
    font-size: 24px;
    font-weight: 600;
    color: #26a17b;
    margin: 5px 0;
}

.trc20-info small {
    color: #888;
}

.trc20-wallet-block {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.trc20-wallet-block label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.trc20-wallet-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.trc20-wallet-row code {
    flex: 1;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 13px;
    word-break: break-all;
    display: flex;
    align-items: center;
}

.trc20-wallet-row .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
}

.trc20-copied {
    display: none;
    color: #26a17b;
    font-size: 12px;
    margin-top: 5px;
}

.trc20-copied.show {
    display: block;
}

.trc20-note {
    padding-top: 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.trc20-note strong {
    color: #333;
}

.trc20-pending-content,
.trc20-success-content,
.trc20-rejected-content {
    text-align: center;
    padding: 30px 0;
}

.trc20-loader {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #26a17b;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: trc20spin 1s linear infinite;
}

@keyframes trc20spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trc20-success-icon {
    width: 60px;
    height: 60px;
    background: #26a17b;
    color: #fff;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.trc20-rejected-icon {
    width: 60px;
    height: 60px;
    background: #dc3545;
    color: #fff;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.trc20-last-invoice {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.trc20-last-invoice-pending {
    border-left: 3px solid #ffc107;
}

.trc20-last-invoice-paid {
    border-left: 3px solid #26a17b;
}

.trc20-last-invoice-cancelled {
    border-left: 3px solid #dc3545;
}

.trc20-new-invoice-btn {
    margin-top: 10px;
}
