/* temp_stylePlugin:src\app.css */
:root {
  --apple-bg: #f5f5f7;
  --apple-card-bg: #ffffff;
  --apple-text-primary: #1e293b;
  --apple-text-secondary: #64748b;
  --apple-border: #e2e8f0;
  --apple-accent: #104560;
  --apple-radius: 12px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--apple-bg);
  color: var(--apple-text-primary);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Myriad Set Pro",
    "SF Pro Icons",
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#app {
  min-height: 100vh;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 20px;
}
.section {
  background: var(--apple-card-bg);
  border-radius: var(--apple-radius);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--apple-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.block-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--apple-text-primary);
  display: flex;
  align-items: center;
}
.block-subtitle {
  font-size: 14px;
  color: var(--apple-text-secondary);
  margin-left: 8px;
  font-weight: 400;
}
.btn {
  border-radius: 20px !important;
  font-weight: 500 !important;
}
.btn-primary {
  background: var(--apple-accent) !important;
  color: #fff !important;
  border-color: var(--apple-accent) !important;
}
.track-header-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.preset-group {
  display: flex;
  gap: 6px;
}
.preset-btn {
  background: #eee;
  border: none;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  cursor: pointer;
  color: var(--apple-text-primary);
  transition: all 0.2s;
}
.preset-btn:hover {
  background: #e0e0e0;
}
.preset-btn.active {
  background: var(--apple-accent);
  color: #fff;
}
.timeline-container {
  background: var(--apple-card-bg);
  border-radius: var(--apple-radius);
  padding: 24px;
  border: 1px solid var(--apple-border);
  margin-bottom: 24px;
}
.timeline-scale-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 12px;
}
.timeline-scale-label-cell {
  width: 200px;
  flex-shrink: 0;
}
.timeline-scale-track {
  flex: 1;
  position: relative;
  height: 30px;
}
.timeline-scale-mark-wrapper {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-scale-mark {
  width: 1px;
  height: 6px;
  background-color: var(--apple-border);
}
.timeline-scale-label {
  font-size: 10px;
  color: var(--apple-text-secondary);
  white-space: nowrap;
  margin-top: 4px;
}
.timeline-devices {
  border-top: 1px solid var(--apple-border);
  padding-top: 16px;
}
.timeline-device-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.timeline-device-name {
  width: 200px;
  flex-shrink: 0;
  color: var(--apple-text-primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.timeline-device-name:hover {
  color: #007aff;
}
.timeline-track {
  flex: 1;
  background: #f2f2f7;
  border-radius: 8px;
  height: 36px;
  position: relative;
  overflow: hidden;
}
.timeline-segment {
  position: absolute;
  top: 0;
  bottom: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}
.timeline-segment:hover {
  transform: scale(0.98);
  filter: brightness(0.9);
  z-index: 10;
}
.timeline-segment-moving {
  background: #104560 !important;
}
.timeline-segment-stopped {
  background: #cbd5e1;
}
.timeline-segment-label {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  pointer-events: none;
  white-space: nowrap;
}
.timeline-segment-moving .timeline-segment-label {
  color: #fff;
}
.timeline-segment-stopped .timeline-segment-label {
  color: #475569;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d2d2d7;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #86868b;
}
/*# sourceMappingURL=main.css.map */
