@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1e1e1e;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banner {
    background: url('http://s735579569.online.de/MEDIEN/KI/Images/Banner.PNG') no-repeat center center;
    background-size: cover;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 300px;}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c2c2c;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content {
    max-width: 800px;
    padding: 20px;
    background-color: #2c2c2c;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    text-align: center;
    border-radius: 10px;
}
h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffcc;
    font-size: 2.5em;
    margin-bottom: 20px;
}
p {
    font-size: 1.2em;
    line-height: 1.6;
}
a {
    color: #00ffcc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.button-container {
    margin-top: 20px;
}
.futuristic-button {
    background-color: #00ffcc;
    border: none;
    color: #1e1e1e;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    font-family: 'Orbitron', sans-serif;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.futuristic-button:hover {
    background-color: #1e1e1e;
    color: #00ffcc;
    border: 1px solid #00ffcc;
}
.main-table th, .main-table td {
    padding: 10px;
    border: 1px solid #444;
    font-size: 0.9em; /* Smaller font size for list entries */
}
.main-table th {
    background-color: #00ffcc;
    color: #1e1e1e;
    text-align: left;
}
.main-table tr:nth-child(even) {
    background-color: #2c2c2c;
}
.main-table tr:nth-child(odd) {
    background-color: #3a3a3a;
}
.nested-table th, .nested-table td {
    padding: 8px;
    border: 1px solid #444;
    font-size: 0.9em; /* Smaller font size for nested list entries */
}
.nested-table th {
    background-color: #6c757d;
    color: #fff;
    text-align: left;
}
.nested-table tr:nth-child(even) {
    background-color: #333;
}
.nested-table tr:nth-child(odd) {
    background-color: #444;
}
.nested-table td {
    color: #00ffcc; /* Set the text color to green */
}
.category-name {
    color: #ff4500; /* Red color for category names */
}
.fieldset-legend {
    color: #fcf9f9; /* White color for fieldset legends */
}
.link {
    color: #00ffcc; /* Green color for links */
}
.link:hover {
    color: #ff4500; /* Change link color on hover */
}
