/* ── Active Padel – Öppet/Stängt badge ─────────────────────────────────────── */

.ap-status {
  display:         inline-flex;
  align-items:     center;
  gap:             5px;
  font-family:     Montserrat, sans-serif;
  font-size:       11px;
  font-weight:     700;
  letter-spacing:  1px;
  text-transform:  uppercase;
  padding:         3px 10px 3px 8px;
  border-radius:   50px;
  vertical-align:  middle;
  line-height:     1;
  white-space:     nowrap;
}

.ap-dot {
  display:       inline-block;
  width:         7px;
  height:        7px;
  border-radius: 50%;
  flex-shrink:   0;
}

/* ── Öppet ── */
.ap-open {
  background: rgba(151, 211, 0, 0.12);
  color:      #97d300;
  border:     1px solid rgba(151, 211, 0, 0.28);
}

.ap-open .ap-dot {
  background: #97d300;
  animation:  ap-pulse 2.5s ease-in-out infinite;
}

/* ── Stängt ── */
.ap-closed {
  background: rgba(220, 80, 80, 0.10);
  color:      #ff8080;
  border:     1px solid rgba(220, 80, 80, 0.25);
}

.ap-closed .ap-dot {
  background: #ff8080;
}

/* ── Pulsanimation för öppet-dot ── */
@keyframes ap-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(151, 211, 0, 0.60); }
  70%  { box-shadow: 0 0 0 6px rgba(151, 211, 0, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(151, 211, 0, 0);    }
}
