/* BM Spam Shield — Cookie Consent Banner */

#bm-ss-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 20px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.25);
  font-family: inherit;
}

.bm-ss-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bm-ss-consent-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
}

.bm-ss-consent-text strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

#bm-ss-consent a {
  color: #4da3ff;
  text-decoration: underline;
}

.bm-ss-consent-buttons { flex-shrink: 0; }

.bm-ss-btn {
  padding: 10px 28px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}

.bm-ss-accept       { background: #4CAF50; color: #fff; }
.bm-ss-accept:hover { background: #43a047; }

@media (max-width: 600px) {
  .bm-ss-consent-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bm-ss-btn { width: 100%; text-align: center; }
}
