/* EduTrack Session Widget — generated file, do not edit directly. Source: widget/styles/widget.css */
#edutrack-widget,
#edutrack-widget * {
  box-sizing: border-box;
}

#edutrack-widget {
  --et-navy: #0f1f3d;
  --et-teal: #0a6e6e;
  --et-gold: #c9932a;
  --et-danger: #c0392b;
  --et-muted: #6b7a8d;
  --et-border: rgba(15, 31, 61, 0.1);
  --et-bg: #ffffff;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--et-navy);
  margin: 0 0 20px;
}

#edutrack-widget .et-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--et-bg);
  border: 1px solid var(--et-border);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(15, 31, 61, 0.06);
}

#edutrack-widget .et-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

#edutrack-widget .et-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

#edutrack-widget .et-dot--idle {
  background: var(--et-muted);
}

#edutrack-widget .et-dot--active {
  background: var(--et-teal);
  animation: et-pulse 1.8s ease infinite;
}

#edutrack-widget .et-dot--warning {
  background: var(--et-gold);
  animation: et-pulse 1.8s ease infinite;
}

@keyframes et-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

#edutrack-widget .et-time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#edutrack-widget .et-btn {
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.1s ease;
}

#edutrack-widget .et-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#edutrack-widget .et-btn--primary {
  background: var(--et-navy);
  color: #fff;
}

#edutrack-widget .et-btn--primary:hover:not(:disabled) {
  background: #16305a;
}

#edutrack-widget .et-btn--secondary {
  background: transparent;
  color: var(--et-muted);
  border: 1px solid var(--et-border);
}

#edutrack-widget .et-btn--secondary:hover:not(:disabled) {
  background: rgba(15, 31, 61, 0.04);
}

#edutrack-widget .et-btn--danger {
  background: var(--et-danger);
  color: #fff;
}

#edutrack-widget .et-btn--danger:hover:not(:disabled) {
  background: #a53225;
}

#edutrack-widget .et-panel {
  background: var(--et-bg);
  border: 1px solid var(--et-border);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(15, 31, 61, 0.06);
}

#edutrack-widget .et-panel--error {
  border-color: rgba(192, 57, 43, 0.25);
}

#edutrack-widget .et-panel-heading {
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 6px;
}

#edutrack-widget .et-panel-copy {
  color: var(--et-muted);
  margin: 0 0 16px;
}

#edutrack-widget .et-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--et-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--et-navy);
  margin-bottom: 6px;
}

#edutrack-widget .et-input:focus {
  outline: 2px solid var(--et-teal);
  outline-offset: 1px;
}

#edutrack-widget .et-field-error {
  color: var(--et-danger);
  font-size: 12px;
  margin-bottom: 10px;
}

#edutrack-widget .et-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#edutrack-widget .et-warning-note {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(201, 147, 42, 0.08);
  border: 1px solid rgba(201, 147, 42, 0.25);
  border-radius: 8px;
  color: #7a5b1a;
  font-size: 12.5px;
}

@media (max-width: 480px) {
  #edutrack-widget .et-bar {
    flex-direction: column;
    align-items: stretch;
  }

  #edutrack-widget .et-actions {
    flex-direction: column;
  }
}
