.fastpix-video-list-wrap { background: #fff; border-radius: 8px; padding: 24px 24px 0 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.fastpix-video-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 24px; }
.fastpix-video-table th, .fastpix-video-table td { padding: 20px 12px; text-align: left; font-size: 15px; }
.fastpix-video-table th { color: #50575e; font-weight: 600; background: #f6f7f8; border-bottom: 2px solid #e5e7eb; text-transform: uppercase; letter-spacing: 0.03em; }
.fastpix-video-table tbody tr { 
    border-bottom: 1px solid #e1e5e9; 
    transition: all 0.2s ease;
    position: relative;
}
.fastpix-video-table tbody tr:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d1d5db 20%, #d1d5db 80%, transparent 100%);
}
.fastpix-video-table tbody tr:hover { 
    background: #f8fafc; 
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.fastpix-video-table tbody tr:hover::after {
    opacity: 0;
}
.fastpix-video-table td { vertical-align: middle; }
.fastpix-copy-shortcode, .fastpix-open-modal-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 44px;
    padding: 0 18px;
    font-size: 16px;
    border: 1px solid #2271b1;
    background: #f9fbfd;
    color: #2271b1;
    border-radius: 6px;
    gap: 8px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-sizing: border-box;
}
.fastpix-copy-shortcode:hover, .fastpix-open-modal-arrow:hover {
    background: #e6f3ff;
    color: #135e96;
    border-color: #135e96;
}
.fastpix-protected-notice:hover {
    background: #e6f3ff !important;
    color: #135e96 !important;
    border-color: #135e96 !important;
}
.fastpix-protected-notice:hover .dashicons {
    color: #135e96 !important;
}
.fastpix-copy-shortcode span.dashicons, .fastpix-open-modal-arrow span.dashicons {
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fastpix-open-modal-arrow {
    padding: 0 14px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fastpix-row-actions { background: #f4f6fa; border: 1px solid #d1d5db; color: #888; border-radius: 4px; cursor: pointer; }
.fastpix-row-actions:hover { background: #e6f3ff; color: #135e96; }
.dashicons-ellipsis:before { content: '\f475'; }

/* Thumbnail loading states */
.fastpix-thumbnail-container {
    background: #f9f9f9;
}
.fastpix-thumbnail-placeholder {
    transition: opacity 0.3s ease;
}
.fastpix-thumbnail-placeholder .dashicons {
    animation: fastpix-pulse 2s infinite;
}
.fastpix-thumbnail-image {
    transition: opacity 0.3s ease !important;
}

/* Subtle pulse animation for loading state */
@keyframes fastpix-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (max-width: 900px) {
    .fastpix-video-list-wrap { padding: 10px; }
    .fastpix-video-table th, .fastpix-video-table td { padding: 8px 4px; font-size: 13px; }
