body {
    background-color: #333;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #222;
}

/* Farbe für Links in der Tabelle */
.table-wrapper table a {
  color: #007bff;
  text-decoration: none;
}

/* Stil für Links in der Tabelle beim Überfahren mit der Maus */
.table-wrapper table a:hover {
  color: #1E90FF;
  text-decoration: none;
}



.style-container {
    display: flex;
    justify-content: center; /* In die Mitte der Seite zentrieren */
    align-items: center;
    margin-top: 30px; /* Abstand nach oben anpassen */
}

.style-container label {
    margin-right: 10px;
    font-size: 18px; /* Schriftgröße anpassen */
    font-weight: bold; /* Fettdruck hinzufügen */
}

.style-dropdown {
    width: 150px;
    height: 36px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f8f8f8;
    color: #333;
    text-align: center; /* Schrift zentrieren */
    font-weight: bold; /* Fettdruck hinzufügen */
    transition: color 0.5s ease, transform 0.5s ease; /* Animationseffekt hinzufügen */
}

.style-dropdown:hover {
    color: #1E90FF; /* Farbe beim Überfahren anpassen */
    transform: scale(1.1); /* Vergrößerung beim Überfahren hinzufügen */
    cursor: pointer; /* Zeiger beim Überfahren anzeigen */
}

.style-button {
    padding: 8px 16px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px; /* Abstand zum Dropdown-Menü anpassen */
}

.style-button:hover {
    background-color: #0069d9;
}

/* Styles für geöffnetes Dropdown-Menü */
.style-container .style-dropdown:focus {
    outline: none;
    background-color: #ccc; /* Hintergrundfarbe des geöffneten Dropdown-Menüs anpassen */
}

.dropdown-content {
    background-color: #f8f8f8; /* Hintergrundfarbe des Dropdown-Menüs anpassen */
}



.dropbtn {
    background-color: #222;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #777;}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}






.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}


.fab.fa-discord {
    color: #7289da; 
    font-size: 24px; 
    transition: color 0.5s ease; 
}


.fab.fa-discord:hover {
    color: #546ddb; 
    cursor: pointer; 
}

.fa-youtube {
    color: #ff0000; 
    font-size: 24px; 
    transition: color 0.5s ease; 
}


.fa-youtube:hover {
    color: #c4302b; 
    cursor: pointer; 
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li .fa-bars {
    font-size: 30px; 
}


nav ul li a {
    color: #fff;
    text-decoration: none;
	font-size: 20px;
}

header {
  background-color: #222;
  padding: 10px 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}

.search-container {
    display: flex;
    align-items: center;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.search-dropdown {
    width: 150px;
    height: 36px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #f8f8f8;
    color: #333;
}

.dropdown-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

.search-input {
    width: 200px;
    height: 36px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 10px;
}

.search-button {
    padding: 8px 16px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #0069d9;
}


.dataTables_wrapper {
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_length {
    float: left;
}

.dataTables_wrapper .dataTables_filter {
    float: right;
}

.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
}

@media only screen and (max-width: 1000px) {
    .table-container {
        flex-direction: column;
        align-items: center;
        overflow: auto;
    }

    .table-wrapper {
        margin: 20px 0;
        width: 100% !important;
    }

    .table-wrapper table {
        table-layout: auto;
        width: 100%;
    }

    .table-wrapper td {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.table-wrapper {
    margin: 20px;
    width: calc(50% - 40px);
}

@media only screen and (min-width: 1001px) {
    .table-wrapper {
        width: 100%;
        max-width: calc(50% - 40px);
    }
}

.table-wrapper thead {
    background-color: #555;
    color: #fff;
}





.table-wrapper thead {
    background-color: #555;
    color: #fff;
}

.table-wrapper th {
    padding: 10px;
    font-weight: bold;
    border-bottom: none;
    text-align: left;
}

.table-wrapper tbody tr:nth-child(even) {
    background-color: #393939;
}

.table-wrapper tbody tr:nth-child(odd) {
    background-color: #333;
}

.table-wrapper tbody td {
    padding: 10px;
    border-bottom: 1px solid #555;
}

.table-wrapper tbody tr:hover {
    background-color: #4e4e4e;
}



#discord-widget {
  position: fixed;
  bottom: 20vh;
  right: 20px;
  z-index: 9999;
}

#discord-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 10000;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  #discord-widget {
    display: none;
  }
  #discord-toggle {
    display: block;
  }
}
