body {
  	background-image: url('../bilder/bg.jpg');
  	background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow-y: scroll;  
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 8px;
    overflow: hidden;
}
th, td {
    padding: 12px;
    border-bottom: 1px solid #444;
    text-align: left;
    font-size: 16px;
    vertical-align: top;
	transition: all 0.7s ease;
}
th {
    background-color: #007bff;
    text-transform: uppercase;
    font-weight: bold;
}
#sort {
    cursor: pointer;
}
#sort.sorted:after {
    content: ' ▲';
}
#sort.sorted.desc:after {
    content: ' ▼';
}
tr:nth-child(even) {
    background-color: rgba(68, 68, 68, 0.8);
}
tr:hover {
    background-color: rgba(85, 85, 85, 0.8);
}
h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #007bff;
    font-size: 24px;
}
.container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 97px auto 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.7s ease;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%); 
    overflow-y: auto;
    height: calc(100vh - 104px);
}
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
::-webkit-scrollbar {
    display: none;
}
td:nth-child(n+2) {
    width: 100px;
}
#Punkte {
  width: 120px;
}

/* Responsive Anpassungen für Bildschirme unter 2000px */
@media only screen and (max-width: 2000px) {
    th, td {
        font-size: 14px;
		transition: all 0.7s ease;
    }

    .container {
        max-width: 800px;
		transition: all 0.7s ease;
    }

    /* Horizontale Ausrichtung der Zahlen in den Tabellen */
    td:nth-child(n+2) {
         width: 60px;
    }
    #Punkte {
        width: 100px;
    }
}
/* Responsive Anpassungen für Bildschirme unter 1075px */
@media only screen and (max-width: 1075px) {
  #chart {
    display: none;
	transition: all 0.7s ease;
  }	
}
/* Responsive Anpassungen für Bildschirme unter 600px */
@media only screen and (max-width: 600px) {	
  .container {
    margin: 75px auto 20px;
    height: calc(100vh - 140px);
  }
  th, td {
    font-size: 10px;
	transition: all 0.7s ease;
  }
  .word-break {
    word-break: break-all;
  }
}
/* Klappboxen */
.accordion {
	background-color: rgba(0, 143, 57, 0.3);
	border-radius: 8px;
	color: #FFF;
	text-transform: uppercase;
	cursor: pointer;
	padding: 14px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	margin-bottom: 2px;
}
.active.accordion,
.accordion.active,
.accordion:hover {
    background-color: rgba(11, 103, 48, 0.3);
}

.panel {
	padding: 18px;
	display: none;
	overflow: hidden;
	border-radius: 8px;
	margin-top: 2px;
	transition: all 0.4s;
}
.panel p {
	margin: 0;
	color: #fff;
}
/* Klappboxen in den Klappboxen*/
.accordionAll {
	background-color: rgba(255, 255, 0, 0.3);
	border-radius: 8px;
	color: #FFF;
	text-transform: uppercase;
	cursor: pointer;
	padding: 14px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	margin-bottom: 2px;
}
.active.accordionAll,
.accordionAll.active,
.accordionAll:hover {
    background-color: rgba(184, 184, 20, 0.3);
}
.panelAll {
	padding: 18px;
	display: none;
	overflow: hidden;
	border-radius: 8px;
	margin-top: 2px;
	transition: all 0.4s;
}
.panelAll p {
	margin: 0;
	color: #fff;
}