/* ============================================
   Shared Video Tool Styles
   Used by video-compressor and video-cropper
   ============================================ */

/* Progress bar */
.progress-container {
    width: 100%;
    margin-top: 15px;
    display: none;
}

.progress-bar-track {
    width: 100%;
    height: 12px;
    background: var(--input-bg);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Browser compatibility warning */
.browser-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}
