#dsc-cookie-consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid rgba(120, 138, 173, 0.34);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(24, 39, 75, 0.2);
  padding: 12px;
  max-width: 820px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2937;
}

#dsc-cookie-consent-inner {
  display: grid;
  gap: 10px;
}

.dsc-cookie-consent-text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.45;
  color: #4b5a70;
}

.dsc-cookie-consent-text a {
  color: #2d6dcf;
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 109, 207, 0.35);
}

#dsc-cookie-consent-actions {
  margin-top: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

#dsc-cookie-consent-actions button {
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(120, 138, 173, 0.42);
  background: #ffffff;
  color: #1f2937;
  font-size: 0.86rem;
  padding: 6px 10px;
  cursor: pointer;
}

#dsc-cookie-consent-actions .dsc-accept {
  background: #1f9d55;
  border-color: #1f9d55;
  color: #ffffff;
}

#dsc-cookie-consent-actions .dsc-reject {
  background: #ffffff;
}

@media (max-width: 640px) {
  #dsc-cookie-consent-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 10px;
  }

  .dsc-cookie-consent-text {
    font-size: 0.9rem;
    flex: 1 1 100%;
  }

  #dsc-cookie-consent-actions button {
    flex: 1 1 auto;
    min-width: 120px;
  }
}
