/* Admin Copy-to-Clipboard Styles */

.admin-copy-text {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: #6c757d;
    transition: all 0.2s ease;
    position: relative;
}

.admin-copy-text:hover {
    text-decoration-color: #007bff;
    color: #007bff;
}

.admin-copy-text:active {
    transform: scale(0.98);
}

/* Badge variant for copy-to-clipboard */
.admin-copy-badge {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    position: relative;
}

.admin-copy-badge:hover {
    text-decoration-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-copy-badge:active {
    transform: translateY(0);
}

/* Small badge for IDs */
.admin-id-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: #cccccc;
    color: white;
    border-radius: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none !important;
}

.admin-id-badge.admin-copy-badge:hover {
    background-color: #007bff;
    color: black;
}

/* Copy feedback animation */
.copy-feedback {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
}

.copy-feedback.error {
    background: #dc3545;
}
