.mitglied-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 24px !important;
    font-weight: bold;
    color: white;
    background-color: #28a745; /* Green */
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }
  
  /* Ensure it is centered */
  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  /* Hover Effect */
  .mitglied-button:hover {
    background-color: #218838; /* Darker Green */
    transform: scale(1.05);
  }