/* Copyright (c) 2025-2026 Ioannis Belesiotis. All rights reserved.
   This source code is proprietary and confidential. */
.report-overlay {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface);
  z-index: 10;
}

.report-overlay-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

.overlay-body {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface-alt);
  padding: 16px;
}

.overlay-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-border);
  min-height: 52px;
}

.overlay-back-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.overlay-back-btn:hover {
  background: var(--color-accent-subtle);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

#reportOverlayTitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 0.3px;
}

#worklogsSyncControls {
  display: flex;
  align-items: center;
  gap: 10px;
}

#worklogsLastSync {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Step 17 (cursor-lifecycle.md §2.5): Unsynced Projects banner removed.
   Classes .worklogs-unsynced-hint + .worklogs-resync-link retired together
   with the JS in reports.js. The new Re-fetch all button uses btn-ghost. */
