#token-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    width: fit-content;
}

#token-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background: #eaeaea;
    padding: 5px 10px;
    border-radius: 5px;
}

.copy-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.copy-button:hover {
    background: #0056b3;
}

.copy {
    transition: all 0.3s ease;
}

.copy:hover {
    color: #16a34a;
    transform: scale(1.1);
}

#copy-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

#copy-alert.show {
    opacity: 1;
}

