body{
	background-attachment: fixed; /* Das Hintergrundbild bleibt fixiert */
    background-position: center;
	background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    height: 100vh;
}
.table-c{
			align-items: center;
			text-align: center;
		}
		
.table-container {
            background-color: rgba(0, 0, 0, 0.7); /* Kasten leicht transparent */
            padding: 20px; /* Abstand um die Tabelle */
            border: 1px solid gray; /* Kasten um die Tabelle */
            border-radius: 15px; /* Abgerundete Ecken für den Kasten */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Schatten für den Kasten */
}

table {
			border-collapse: collapse;
			background-color: rgba(75, 75, 75, 0.0); /* Tabelle leicht transparent */
            border: none;
}
th {
            font-weight: bold;
        }
		
th, td {
            padding: 8px;
			
}
.button-container {
            background-color: rgba(0, 0, 0, 0.7); /* Kasten leicht transparent */
            padding: 20px; /* Abstand um die Tabelle */
            border: 1px solid gray; /* Kasten um die Tabelle */
            border-radius: 10px; /* Abgerundete Ecken für den Kasten */
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); /* Schatten für den Kasten */
			margin-top: 20px;
            text-align: center;
			display: inline-block;
}
.download-button {
            display: inline-block;
            font-weight: bold;
            font-size: 16px;
            padding: 10px 20px;
            text-decoration: none;
            background-color: #3498db;
            color: #ffffff;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }
.text{
			text-align: center;
			font-weight: bold;
            color: #dddddd; /* Ändert die Schriftfarbe auf Dunkelgrau (#333) */
            font-size: 40px; /* Ändert die Schriftgröße auf 14 Pixel */
			margin-top: 0px;
		}
.message{
			color: #dddddd; /* Ändert die Schriftfarbe auf Dunkelgrau (#333) */
            font-size: 20px;
			font-weight: bold;
			text-align: left;
			
		}
		.right-align {
            text-align: right;
        }
        .left-align {
            text-align: left;
			
        }