/* ============================================
LICENSE COPY BUTTON - Interactive
============================================ */
.license-copy-btn {
position: relative !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
overflow: hidden !important;
}

.license-copy-btn:hover {
transform: translateY(-2px) !important;
box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.license-copy-btn:active {
transform: translateY(0) !important;
}

.license-copy-btn .license-text,
.license-copy-btn .license-copied {
display: inline-block;
transition: opacity 0.2s ease;
}

.license-copy-btn.copied {
background: #4caf50 !important;
}

/* Animation for copied state */
@keyframes licensePulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}

.license-copy-btn.copied {
animation: licensePulse 0.3s ease;
}
