/* DashExport UI Styles */
#copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1cc88a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(28,200,138,0.4);
    z-index: 10002;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
#copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

#copy-selection-menu {
    position: absolute;
    z-index: 10001;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    padding: 10px;
    min-width: 210px;
    border: 1px solid #e3e6f0;
    overflow: hidden;
    animation: dashFadeInScale 0.2s ease-out;
}

@keyframes dashFadeInScale {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.copy-menu-item {
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: #4e73df;
    font-weight: 600;
    transition: all 0.15s;
}

.copy-menu-item:hover {
    background: #4e73df;
    color: #fff !important;
}

.copy-menu-item i { 
    width: 20px; 
    text-align: center; 
    font-size: 1rem;
}

.copy-menu-item.excel:hover { background: #1d6f42; }
.copy-menu-item.word:hover { background: #2b579a; }
.copy-menu-item.image:hover { background: #36b9cc; }
.copy-menu-item.data:hover { background: #4e73df; }

.copy-menu-divider { 
    height: 1px; 
    background: #e3e6f0; 
    margin: 6px 0; 
}

.btn-copy-section.copied {
    background: #1cc88a !important;
    border-color: #1cc88a !important;
    color: #fff !important;
}
