.JsTimeLine {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}
.JsTimeLine .timeline-layout-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 40px 1fr;
  width: 100%;
  height: 100%;
  gap: 0;
}
.JsTimeLine .timeline-corner {
  grid-column: 1;
  grid-row: 1;
  background-color: #e0e0e0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.JsTimeLine .timeline-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
}
.JsTimeLine .timeline-control-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #999;
  background: linear-gradient(to bottom, #f8f8f8, #e0e0e0);
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: #333;
  font-weight: bold;
}
.JsTimeLine .timeline-control-btn:hover {
  background: linear-gradient(to bottom, #fff, #e8e8e8);
  border-color: #666;
}
.JsTimeLine .timeline-control-btn:active {
  background: linear-gradient(to bottom, #d0d0d0, #e8e8e8);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.JsTimeLine .timeline-control-btn:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  z-index: 1;
}
.JsTimeLine .timeline-control-btn.timeline-btn-play {
  color: #006600;
}
.JsTimeLine .timeline-control-btn.timeline-btn-pause {
  color: #cc6600;
}
.JsTimeLine .timeline-control-btn.timeline-btn-stop {
  color: #cc0000;
}
.JsTimeLine .timeline-frame-display {
  min-width: 32px;
  padding: 4px 8px;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  color: #333;
  user-select: none;
}
.JsTimeLine .timeline-ruler {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.JsTimeLine .timeline-ruler .timeline-ruler-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.JsTimeLine .timeline-ruler .ruler-tick {
  position: absolute;
  height: 8px;
  bottom: 0;
  border-left: 1px solid #999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.JsTimeLine .timeline-ruler .ruler-tick.ruler-tick-major {
  height: 12px;
  border-left-color: #666;
}
.JsTimeLine .timeline-ruler .ruler-tick.ruler-tick-labeled {
  height: 100%;
  border-left-color: #333;
}
.JsTimeLine .timeline-ruler .ruler-label {
  position: absolute;
  top: 2px;
  font-size: 10px;
  color: #333;
  user-select: none;
  font-weight: 500;
}
.JsTimeLine .timeline-layer-panel {
  grid-column: 1;
  grid-row: 2;
  background-color: #fafafa;
  border-right: 1px solid #ccc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.JsTimeLine .timeline-layer-panel .timeline-layer-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.JsTimeLine .timeline-layer-panel .layer-panel-layers {
  flex: 1;
  overflow: hidden;
}
.JsTimeLine .timeline-layer-panel .layer-panel-toolbar {
  border-top: 1px solid #ccc;
  background-color: #e8e8e8;
  padding: 6px;
  display: flex;
  gap: 4px;
  justify-content: space-around;
}
.JsTimeLine .timeline-layer-panel .layer-toolbar-btn {
  flex: 1;
  padding: 4px 8px;
  font-size: 11px;
  border: 1px solid #999;
  background: linear-gradient(to bottom, #f8f8f8, #e0e0e0);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.JsTimeLine .timeline-layer-panel .layer-toolbar-btn:hover {
  background: linear-gradient(to bottom, #fff, #e8e8e8);
  border-color: #666;
}
.JsTimeLine .timeline-layer-panel .layer-toolbar-btn:active {
  background: linear-gradient(to bottom, #d0d0d0, #e8e8e8);
}
.JsTimeLine .timeline-layer-panel .layer-toolbar-btn:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  z-index: 1;
}
.JsTimeLine .timeline-layer-panel .layer-toolbar-btn.layer-toolbar-btn-delete {
  color: #cc0000;
}
.JsTimeLine .timeline-layer-panel .layer-row {
  display: flex;
  align-items: center;
  height: 30px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}
.JsTimeLine .timeline-layer-panel .layer-row:hover {
  background-color: #f0f0f0;
}
.JsTimeLine .timeline-layer-panel .layer-row:focus {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
  z-index: 1;
}
.JsTimeLine .timeline-layer-panel .layer-row.layer-row-selected {
  background-color: #c0d8ff;
}
.JsTimeLine .timeline-layer-panel .layer-row.layer-row-selected:hover {
  background-color: #b0c8ef;
}
.JsTimeLine .timeline-layer-panel .layer-row[data-layer-type="folder"] {
  background-color: #f8f8f8;
  font-weight: 500;
}
.JsTimeLine .timeline-layer-panel .layer-row[data-layer-type="folder"].layer-row-selected {
  background-color: #c0d8ff;
}
.JsTimeLine .timeline-layer-panel .layer-row.layer-row-drop-before::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #4a90e2;
  z-index: 10;
}
.JsTimeLine .timeline-layer-panel .layer-row.layer-row-drop-after::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #4a90e2;
  z-index: 10;
}
.JsTimeLine .timeline-layer-panel .layer-row.layer-row-drop-inside {
  background-color: #e8f4ff;
  border: 2px dashed #4a90e2;
}
.JsTimeLine .timeline-layer-panel .layer-row.layer-row-drop-inside:hover {
  background-color: #d8e8ff;
}
.JsTimeLine .timeline-layer-panel .layer-drag-handle {
  width: 24px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: #999;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -2px;
  flex-shrink: 0;
  user-select: none;
  transition: all 0.2s;
}
.JsTimeLine .timeline-layer-panel .layer-drag-handle:hover {
  color: #666;
  background-color: rgba(0, 0, 0, 0.05);
}
.JsTimeLine .timeline-layer-panel .layer-drag-handle:active {
  cursor: grabbing;
  color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.1);
}
.JsTimeLine .timeline-layer-panel .layer-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  flex-shrink: 0;
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-icon.layer-icon-folder {
  transition: transform 0.2s;
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-icon.layer-icon-folder.expanded {
  transform: rotate(90deg);
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-icon.layer-icon-folder.collapsed {
  transform: rotate(0deg);
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-icon-spacer {
  width: 16px;
  display: inline-block;
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-btn {
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: background-color 0.2s;
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.JsTimeLine .timeline-layer-panel .layer-controls .layer-btn:active {
  background-color: rgba(0, 0, 0, 0.2);
}
.JsTimeLine .timeline-layer-panel .layer-name {
  flex: 1;
  padding: 0 8px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}
.JsTimeLine .timeline-layer-panel .layer-name-input {
  width: 100%;
  padding: 2px 4px;
  font-size: 13px;
  border: 1px solid #4a90e2;
  border-radius: 2px;
  outline: none;
  background-color: #fff;
  font-family: inherit;
}
.JsTimeLine .timeline-layer-panel .layer-name-input:focus {
  box-shadow: 0 0 3px rgba(74, 144, 226, 0.5);
}
.JsTimeLine .timeline-grid-container {
  grid-column: 2;
  grid-row: 2;
  background-color: #fff;
  overflow: auto;
  position: relative;
}
.JsTimeLine .timeline-grid-container .timeline-grid-content {
  position: relative;
  min-width: 100%;
  min-height: 100%;
}
.JsTimeLine .timeline-grid-container .timeline-playhead {
  position: absolute;
  top: -40px;
  left: 0;
  width: 2px;
  height: calc(100% + 40px);
  background-color: #ff0000;
  pointer-events: all;
  cursor: ew-resize;
  z-index: 1000;
  box-shadow: 0 0 3px rgba(255, 0, 0, 0.5);
}
.JsTimeLine .timeline-grid-container .timeline-playhead::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #ff0000;
}
.JsTimeLine .timeline-grid-container .timeline-playhead::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  width: 12px;
  height: 100%;
  cursor: ew-resize;
}
.JsTimeLine .timeline-grid-container .grid-row {
  position: absolute;
  border-bottom: 1px solid #e0e0e0;
}
.JsTimeLine .timeline-grid-container .grid-frame {
  position: absolute;
  background-color: #fafafa;
  border-right: 1px solid #e8e8e8;
  cursor: pointer;
  transition: background-color 0.15s;
}
.JsTimeLine .timeline-grid-container .grid-frame:hover {
  background-color: #f0f0f0;
}
.JsTimeLine .timeline-grid-container .grid-frame:focus {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
  z-index: 1;
}
.JsTimeLine .timeline-grid-container .grid-frame-standard {
  position: absolute;
  background-color: #e5e5e5;
  border-right: 1px solid #d8d8d8;
  cursor: pointer;
  transition: background-color 0.15s;
}
.JsTimeLine .timeline-grid-container .grid-frame-standard:hover {
  background-color: #d5d5d5;
}
.JsTimeLine .timeline-grid-container .grid-frame-standard:focus {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
  z-index: 1;
}
.JsTimeLine .timeline-grid-container .grid-frame-standard.selected {
  background-color: #4a90e2;
  border: 2px solid #2a70c2;
}
.JsTimeLine .timeline-grid-container .grid-frame-tween {
  position: absolute;
  background-color: #d0e8ff;
  border-right: 1px solid #b8d8f0;
  cursor: pointer;
  transition: background-color 0.15s;
}
.JsTimeLine .timeline-grid-container .grid-frame-tween:hover {
  background-color: #c0d8f0;
}
.JsTimeLine .timeline-grid-container .grid-frame-tween:focus {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
  z-index: 1;
}
.JsTimeLine .timeline-grid-container .grid-frame-tween.selected {
  background-color: #4a90e2;
  border: 2px solid #2a70c2;
}
.JsTimeLine .timeline-grid-container .grid-keyframe {
  position: absolute;
  background-color: #e5e5e5;
  border-right: 1px solid #d8d8d8;
  cursor: pointer;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.JsTimeLine .timeline-grid-container .grid-keyframe:hover {
  background-color: #d5d5d5;
}
.JsTimeLine .timeline-grid-container .grid-keyframe:focus {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
  z-index: 1;
}
.JsTimeLine .timeline-grid-container .grid-keyframe::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.JsTimeLine .timeline-grid-container .grid-keyframe.selected {
  background-color: #4a90e2;
  border: 2px solid #2a70c2;
}
.JsTimeLine .timeline-grid-container .grid-keyframe.selected::before {
  background-color: #fff;
}
.JsTimeLine .timeline-grid-container .grid-keyframe-empty {
  position: absolute;
  background-color: #fafafa;
  border-right: 1px solid #e8e8e8;
  cursor: pointer;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.JsTimeLine .timeline-grid-container .grid-keyframe-empty:hover {
  background-color: #f0f0f0;
}
.JsTimeLine .timeline-grid-container .grid-keyframe-empty:focus {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
  z-index: 1;
}
.JsTimeLine .timeline-grid-container .grid-keyframe-empty::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 50%;
  box-sizing: border-box;
}
.JsTimeLine .timeline-grid-container .grid-keyframe-empty.selected {
  background-color: #4a90e2;
  border: 2px solid #2a70c2;
}
.JsTimeLine .timeline-grid-container .grid-keyframe-empty.selected::before {
  border-color: #fff;
}
.JsTimeLine .timeline-grid-container .grid-tween {
  position: absolute;
  background-color: rgba(100, 180, 255, 0.15);
  border: 1px solid #80c0ff;
  border-left: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
}
.JsTimeLine .timeline-grid-container .grid-tween::after {
  content: '→';
  font-size: 12px;
  color: #0066cc;
  font-weight: bold;
}
.JsTimeLine .timeline-grid-container .grid-tween[data-tween-type="ease"] {
  background-color: rgba(150, 200, 255, 0.2);
}
.JsTimeLine .timeline-grid-container .grid-tween[data-tween-type="ease"]::after {
  content: '⇝';
}
.JsTimeLine .timeline-grid-container .dragging {
  opacity: 0.5;
  cursor: move;
}
.JsTimeLine .timeline-grid-container .grid-drop-indicator {
  position: absolute;
  border: 2px dashed #4a90e2;
  background-color: rgba(74, 144, 226, 0.1);
  pointer-events: none;
  z-index: 1000;
  box-sizing: border-box;
}
.context-menu {
  background: white;
  border: 1px solid #999;
  border-radius: 2px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  min-width: 200px;
  padding: 2px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
}
.context-menu .context-menu-item {
  padding: 6px 24px 6px 16px;
  cursor: pointer;
  user-select: none;
  color: #333;
  white-space: nowrap;
  transition: background-color 0.1s;
}
.context-menu .context-menu-item:hover:not(.disabled) {
  background-color: #0066cc;
  color: white;
}
.context-menu .context-menu-item:active:not(.disabled) {
  background-color: #0052a3;
}
.context-menu .context-menu-item.disabled {
  color: #999;
  cursor: default;
}
.context-menu .context-menu-separator {
  height: 1px;
  background-color: #ddd;
  margin: 4px 0;
}
.timeline-context-menu {
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  padding: 4px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
}
.timeline-context-menu .timeline-context-menu-item {
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
  color: #333;
}
.timeline-context-menu .timeline-context-menu-item:hover {
  background-color: #4a90e2;
  color: white;
}
.timeline-context-menu .timeline-context-menu-item:active {
  background-color: #2a70c2;
}
.tween-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.tween-dialog {
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  min-width: 400px;
  max-width: 500px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.tween-dialog h2 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.tween-dialog .form-group {
  margin-bottom: 16px;
}
.tween-dialog .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
.tween-dialog .form-group input,
.tween-dialog .form-group select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  box-sizing: border-box;
}
.tween-dialog .form-group input:focus,
.tween-dialog .form-group select:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
.tween-dialog .form-group input:disabled,
.tween-dialog .form-group select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.tween-dialog .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23333%27 d=%27M6 9L1 4h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
}
.tween-dialog .dialog-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.tween-dialog .dialog-buttons button {
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
}
.tween-dialog .dialog-buttons button.btn-primary {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}
.tween-dialog .dialog-buttons button.btn-primary:hover {
  background: #357abd;
  border-color: #357abd;
}
.tween-dialog .dialog-buttons button.btn-primary:active {
  background: #2a5a8d;
  border-color: #2a5a8d;
}
.tween-dialog .dialog-buttons button.btn-secondary {
  background: white;
  color: #333;
}
.tween-dialog .dialog-buttons button.btn-secondary:hover {
  background: #f5f5f5;
}
.tween-dialog .dialog-buttons button.btn-secondary:active {
  background: #e0e0e0;
}
.context-menu-trigger {
  position: absolute;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: rgba(74, 144, 226, 0.9);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.2s;
  user-select: none;
  display: none;
}
.context-menu-trigger:hover {
  background: #4a90e2;
  transform: scale(1.1);
}
.context-menu-trigger:active {
  background: #2a5a8d;
  transform: scale(0.95);
}
@media (pointer: coarse) {
  .context-menu-trigger {
    display: flex;
  }
}
@media (hover: none) {
  .context-menu-trigger {
    display: flex;
  }
}
.JsTimeLine {
  min-width: 320px;
  min-height: 200px;
}
@media (max-width: 768px) {
  .JsTimeLine .timeline-corner .timeline-controls {
    gap: 4px;
    padding: 2px;
  }
  .JsTimeLine .timeline-corner .timeline-control-btn {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .JsTimeLine .timeline-corner .timeline-frame-display {
    font-size: 11px;
    padding: 2px 4px;
  }
  .JsTimeLine .layer-name {
    font-size: 12px;
  }
  .JsTimeLine .layer-icon {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .JsTimeLine .timeline-layout-grid {
    grid-template-columns: 150px 1fr;
  }
  .JsTimeLine .layer-name {
    font-size: 11px;
  }
}
.JsTimeLine .timeline-ruler-container,
.JsTimeLine .timeline-layer-panel-container,
.JsTimeLine .timeline-grid-container {
  min-width: 0;
  min-height: 0;
}


/*# sourceMappingURL=styles.21b7c929a8a747b68804.css.map*/