/* style.css */

/* Eigene Anpassungen an die Tailwind-Stile */
.btn-custom {
    background-color: #00A7A5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
  }
  
  .btn-custom:hover {
    background-color: #00bdbb;
  }
  