/*!
 * Enhanced Video Player Styles
 * Game Film Analysis and Coaching Features
 * 
 * Copyright 2025 - Team Management System
 */

/* Simplified - no extra video controls needed */

/* Video Timestamp Links in Comments */
.video-timestamp {
    background: linear-gradient(135deg, var(--button_primary_color), var(--button_primary_hover_color));
    color: white !important;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    display: inline-block;
    margin: 0 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    border: 1px solid transparent;
}

.video-timestamp:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(var(--button_primary_color_rgb, 24, 119, 242), 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-timestamp.active-timestamp {
    animation: pulse-timestamp 2s infinite;
    box-shadow: 0 0 0 3px rgba(var(--button_primary_color_rgb, 24, 119, 242), 0.3);
}

@keyframes pulse-timestamp {
    0%, 100% { 
        box-shadow: 0 0 0 3px rgba(var(--button_primary_color_rgb, 24, 119, 242), 0.3);
    }
    50% { 
        box-shadow: 0 0 0 6px rgba(var(--button_primary_color_rgb, 24, 119, 242), 0.1);
    }
}

/* Video Seeking Effect */
video.seeking {
    border: 3px solid var(--button_primary_color);
    border-radius: 8px;
    transition: border 0.5s ease;
}

/* Coaching overlay removed - keeping it simple */

/* Upload interface removed - using existing upload system */

/* Responsive Design - minimal needed */
@media (max-width: 768px) {
    .video-timestamp {
        font-size: 0.8em;
        padding: 1px 4px;
    }
}

/* Comment Actions in icon-actions */
.comment-like-action {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: all 0.2s ease;
}

.comment-like-action.active {
    color: #e91e63 !important;
}

.comment-like-action.active .iconfont {
    color: #e91e63;
}

.comment-like-action:hover {
    color: #e91e63 !important;
}

.comment-like-action .like-count {
    font-size: 11px;
    font-weight: 500;
    margin-left: 2px;
}

.comment-edit-action {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: all 0.2s ease;
}

.comment-edit-action:hover {
    color: var(--button_primary_color) !important;
}

/* Comment Edit Form */
.comment-edit-form {
    margin-top: 8px;
}

.comment-edit-input {
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
}

.comment-edit-input:focus {
    border-color: var(--button_primary_color);
    box-shadow: 0 0 0 0.2rem rgba(var(--button_primary_color_rgb, 24, 119, 242), 0.25);
    outline: none;
}

.edit-actions {
    display: flex;
    gap: 8px;
}

.edit-actions .btn {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
}

/* Dark Theme Support - minimal needed */
@media (prefers-color-scheme: dark) {
    .video-timestamp {
        background: linear-gradient(135deg, var(--button_primary_color), var(--button_primary_hover_color));
    }
    
    .comment-edit-input {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .comment-like-action,
    .comment-edit-action {
        color: #a0aec0;
    }
}

