/* Buttons (CI) */
.btn, .wp-block-button__link, .button, button, input[type="submit"]{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--lll-green);
  background: var(--lll-green);
  color: var(--lll-white);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover, .wp-block-button__link:hover, .button:hover, button:hover, input[type="submit"]:hover{
  filter: brightness(0.95);
}
.btn--outline, .is-style-outline .wp-block-button__link{
  background: transparent;
  color: var(--lll-green-dark);
  border-color: var(--lll-green-dark);
}
/* Formularfelder */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], textarea, select{
  width:100%;
  padding: .625rem .75rem;
  border:1px solid var(--lll-gray-300);
  border-radius: 8px;
  background: #fff;
}
input:focus, textarea:focus, select:focus{
  outline: 2px solid var(--lll-green);
  outline-offset: 2px;
  border-color: var(--lll-green);
}
/* Tabellen */
table{ width:100%; border-collapse: collapse; }
th, td{ padding: .75rem; border-bottom:1px solid var(--lll-gray-300); text-align: left; }
