/* === FOOTER === */
.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.015);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  flex-shrink: 0;
}

body.pad-dialog-open .dashboard-footer { padding-right: 430px; }

.footer-cluster { display: inline-flex; align-items: center; gap: 8px; }
.footer-cluster-right { margin-left: auto; }

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: #b8c0d5;
  font-size: 11px;
  font-weight: 700;
}

.footer-pill strong { color: #EEF2FF; font-weight: 800; }

.footer-pill-live { color: #cdeeda; }

.footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20DF74;
  box-shadow: 0 0 0 3px rgba(32,223,116,0.14);
}

.footer-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #80e3a9;
  font-size: 11px;
  font-weight: 700;
}

.footer-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(32,223,116,0.12);
  border: 1px solid rgba(32,223,116,0.22);
  font-size: 0;
}

.footer-check::before {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  border-left: 2px solid #82e9aa;
  border-bottom: 2px solid #82e9aa;
  transform: rotate(-45deg) translateY(-1px);
}

.footer-time { color: #aab3c8; font-size: 11px; font-weight: 700; }

/* === VOLUME SLIDER === */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      #FF2D8D 0%,
      #FF4DA6 var(--range-fill, 50%),
      #2A2F3A var(--range-fill, 50%),
      #2A2F3A 100%
    );
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f5f2ff;
  box-shadow: 0 0 0 3px rgba(255,45,141,0.22), 0 0 12px rgba(255,45,141,0.28);
}

/* Primary button general */
.primary-btn {
  background: linear-gradient(135deg, #FF2D8D, #FF4DA6);
  color: white;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 22px rgba(255,45,141,0.22);
}

.secondary-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #EEF2FF;
  font-weight: 700;
}

.ghost-btn {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  color: #EEF2FF;
}

