.sk-cookie-notice {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
  padding: 14px 16px;
  background: #1f2933;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.22);
  font-family: Tahoma, Arial, sans-serif;
}

.sk-cookie-notice.is-visible {
  display: flex;
}

.sk-cookie-notice p {
  flex: 1 1 auto;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
}

.sk-cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.sk-cookie-notice button {
  flex: 0 0 auto;
  min-width: 84px;
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sk-cookie-notice button:hover {
  background: #1d4ed8;
}

.sk-cookie-notice .sk-cookie-reject {
  background: #374151;
}

.sk-cookie-notice .sk-cookie-reject:hover {
  background: #4b5563;
}

@media (max-width: 640px) {
  .sk-cookie-notice {
    bottom: 10px;
    left: 10px;
    right: 10px;
    align-items: stretch;
    flex-direction: column;
  }

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

  .sk-cookie-notice button {
    width: 100%;
  }
}
