/**
 * Copy Button Styles for Course Flow Plugin
 * Styles for copy buttons used across all admin pages
 * Version: 1.0.0
 * Author: Pawel Borowiec
 * Text Domain: course-flow
 */

/* Course Flow - Copy button styles for ALL admin pages */
.courseflow-copy-button {
    margin-left: 10px;
    padding: 8px !important;
    font-size: 12px;
    cursor: pointer;
    background: #f1f1f1 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    box-sizing: border-box !important;
}

/* Hover - subtle darkening */
.courseflow-copy-button:hover {
    background: #e5e5e5 !important;
}

/* Active - press effect */
.courseflow-copy-button:active {
    background: #d0d0d0 !important;
    transform: translateY(1px);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1) !important;
}

/* Icon */
.courseflow-copy-button img {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle;
}
