/* ============================================
   sessionClock.css — Session Clock Widget
   ============================================ */

.session-clock-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  flex-shrink: 0;
}

/* 24-hour bar */
.session-bar {
  width: 160px;
  height: 6px;
  position: relative;
  flex-shrink: 0;
}

.session-bar-track {
  width: 100%;
  height: 100%;
  background: var(--bg-tertiary);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.session-bar-segment {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0.45;
  border-radius: 3px;
}

.session-bar-marker {
  position: absolute;
  top: -3px;
  width: 2px;
  height: 12px;
  background: var(--text-primary);
  border-radius: 1px;
  transform: translateX(-1px);
  z-index: 2;
}

/* Info text */
.session-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.session-active-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-killzone {
  font-size: 0.65rem;
  color: var(--accent-orange);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.kz-pulse-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-orange);
  animation: kzPulse 1.5s ease-in-out infinite;
}

@keyframes kzPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.session-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .session-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .session-clock-widget {
    display: none;
  }
}
