/* ========================================
   ACTION BUTTONS (Always Visible)
   ======================================== */

/* Action buttons container - stacked vertically on left */
/* Action buttons - ONLY when no drawer is open */
body:not(.drawer-open) .action-buttons {
  position: fixed;
  left: 16px;
  /* Align with first tab button (accounting for space-evenly) */
  bottom: calc(32vh + 12px);
  /* Level with search button */
  display: flex;
  flex-direction: column;
  /* Stack upward from bottom */
  gap: 12px;
  /* Space between buttons */
  z-index: 1004;
}

/* Individual action button - hierarchical sizing */
.action-btn {
  background: #fff;
  border: 0.5px solid #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  padding: 8px;
}

.action-btn:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

/* Report Incident - match tab button width (firebrick red border) */
#reportBtn {
  width: 66px;
  /* Match individual tab button width */
  height: 62px;
  border: 2px solid #B22222;
  /* Uniform firebrick red border */
  font-size: 10px;
  line-height: 1.3;
  padding: 4px;
  border-top-left-radius: 6px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 12px;
  box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.6);
  /* Darker floating shadow */
}

/* Civic Action - match tab button width (orange border) */
#civicBtn {
  width: 66px;
  /* Match individual tab button width */
  height: 62px;
  border: 2px solid #F28C28;
  /* Uniform orange border */
  font-size: 10px;
  line-height: 1.3;
  padding: 4px;
  border-top-left-radius: 6px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 12px;
  box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.6);
  /* Darker floating shadow */
  position: relative;
  /* For pseudo-element positioning */
}

/* Superhero School Button - in right stack with blue border */
#superheroSchoolBtn {
  border: 2px solid #007BFF !important;
  /* Bright blue border, 0.5px more than standard 1.5px */
}

#superheroSchoolBtn svg {
  width: 19px !important;
  height: 19px !important;
}

/* SVG connector line from RAISE AN ISSUE to Civic Activity tab - REMOVED (inconsistent across devices) */
.connector-line {
  display: none;
}