/* landing-token: 1e83 */
/* Cookie Banner Styles - LinguaWelt Akademie */
#lw-consent-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1A2B3C;
  color: #ffffff;
  padding: 1rem 1.5rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

#lw-consent-bar p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
  color: #e8e8e8;
}

#lw-consent-bar p a {
  color: #1A8F8B;
  text-decoration: underline;
}

#lw-consent-bar p a:hover {
  color: #E8832A;
}

.lw-consent-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#lw-consent-accept {
  background: #1A8F8B;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

#lw-consent-accept:hover {
  background: #157a76;
}

#lw-consent-reject {
  background: transparent;
  color: #cccccc;
  border: 1px solid #555;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#lw-consent-reject:hover {
  border-color: #aaaaaa;
  color: #ffffff;
}

@media (max-width: 640px) {
  #lw-consent-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .lw-consent-btns {
    width: 100%;
    justify-content: flex-end;
  }
}
