.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(18, 32, 44, 0.96);
  border-top: 3px solid #0e91b8;
  box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.22);
}

.cookie-consent-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-consent-text {
  margin: 0;
  color: #f4f8fb;
  font-size: 0.93rem;
  line-height: 1.35rem;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 0;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-primary {
  background-color: #0e91b8;
  color: #ffffff;
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus {
  background-color: #0a7897;
}

.cookie-btn-secondary {
  background-color: #dce3e8;
  color: #1e2d38;
}

.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus {
  background-color: #c8d2da;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}
