/* Baner cookies – ADGAZ */
#cookies-message-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  padding: 0;
  pointer-events: none;
}

#cookies-message {
  pointer-events: auto;
  background: #1a1f2e;
  color: #f5f5f5;
  border-top: 3px solid #50d8af;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
  padding: 16px 20px;
}

#cookies-message .cookies-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  justify-content: space-between;
}

#cookies-message .cookies-text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 13px;
  line-height: 1.55;
  color: #e8e8e8;
}

#cookies-message .cookies-text a {
  color: #50d8af;
  text-decoration: underline;
}

#cookies-message .cookies-text a:hover {
  color: #7eecc8;
}

#cookies-message .cookies-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

#cookies-message .cookies-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1.3;
  font-family: inherit;
}

#cookies-message .cookies-btn-accept {
  background: #50d8af;
  color: #0c2e8a;
}

#cookies-message .cookies-btn-accept:hover {
  background: #3ec99a;
  color: #0a2468;
}

#cookies-message .cookies-btn-more {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

#cookies-message .cookies-btn-more:hover {
  color: #fff;
  border-color: #50d8af;
}

@media (max-width: 575px) {
  #cookies-message .cookies-inner {
    flex-direction: column;
    align-items: stretch;
  }
  #cookies-message .cookies-actions {
    justify-content: stretch;
  }
  #cookies-message .cookies-btn {
    text-align: center;
    flex: 1 1 auto;
  }
}
