/* First-layer cookie banner — TrustedCarers (DPC-style accept / reject) */
.tc-consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100020;
  background: #0f5a60;
  color: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  line-height: 1.45;
}

.tc-consent-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.tc-consent-msg {
  flex: 1 1 280px;
  margin: 0;
  font-size: 14px;
}

.tc-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tc-consent-btn {
  appearance: none; 
  background: #f8f4f1;
  color: #0f5a60;
  font-weight:500;
  font-size: 14px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 99px;
  min-height: 44px;
  border: 0;
}

.tc-consent-btn.tc-consent-accept {
  background: #f49f58;  
} 

.tc-consent-btn:hover,
.tc-consent-btn:focus-visible {
  background:#fff;
  outline: none; 
  color: #0f5a60; 
}

.tc-consent-link {
  color: #fff;
  text-decoration: underline;
  padding: 6px 8px;
}

.tc-consent-link:hover {
  color: #eee;
}
