/* Video Thumbnail Generator - Reusing base styles */
@import url('video-compressor.css');

.tool-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.tool-header::before {
    content: '📸';
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
}

.time-markers {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}

.thumbnail-preview-box {
    margin: 20px 0;
    text-align: center;
}

.custom-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.thumbnail-result {
    margin-bottom: 20px;
    text-align: center;
}

.thumbnail-info {
    text-align: center;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #374151;
}
