.vereine body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

.vereine h2 {
    color: #4caf50;
}

.vereine table {
    width: 100%;
    border-collapse: collapse;
    margin: auto;
    margin-top: 20px;
    border-radius: 10px; /* Abrunden der Ecken */
    overflow: hidden; /* Verhindert, dass der Inhalt über die abgerundeten Ecken hinausgeht */
}

.vereine th, .vereine td {
    border: 0px solid #ccc;
    padding: 10px;
    text-align: left;
}

.vereine th {
    background-color: #4caf50;
    color: white;
}

.vereine .popup {
    display: none; /* Standardmäßig versteckt */
    position: realative;
    z-index: 1000; /* Über anderen Inhalten */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparentes Hintergrund */
    border-radius: 10px; /* Abrunden der Ecken */
	overflow: auto; 
}

.vereine .popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Breite des Popups */

    position: relative;
    border-radius: 10px; /* Abrunden der Ecken */
	overflow: auto; 
}

.vereine .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.vereine .close-button:hover,
.vereine .close-button:focus {
    color: black;
}