/* Layout styles for the Flow State app */

/* Main container grid layout with equal columns */
.container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Card styles */
.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 3px var(--shadow);
  transition: box-shadow var(--transition);
  min-width: 0; /* Prevent content from causing overflow */
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word; /* Ensure content wraps within card */
}

.card:hover {
  box-shadow: 0 4px 8px var(--shadow);
}

.card h2 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Timer card spans full width */
#timerCard {
  grid-column: 1 / -1;
}

/* Tooltip styles */
.tooltip {
  font-size: 0.9rem;
  margin-left: 6px;
  cursor: help;
  color: var(--muted);
}

/* Common note style */
.note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 8px;
}