/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #000;
}

.header h1 {
    color: #ffb300;
    display: flex;
    align-items: center;
}

.generated-time {
    font-size: 32px;
    color: #00d1ac;
    margin-left: 50px;
    font-weight: normal;
    font-weight: 700;
}

/* Listen-Stile */
ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 5px;
    padding: 10px;
    transition: background-color 0.6s ease;
}

li.even {
    background-color: #141141;
	font-size:18px;
	font-weight:700;
}

li.odd {
    background-color: #0f2161;
	font-size:18px;
	font-weight:700;
}

/* Links-Stile */
a {
    text-decoration: none;
    color: #00b0e7;
}

a:hover {
    text-decoration: underline;
}

h2 {
    text-decoration: none;
    color: #97c939;
}

/* Hover-Effekte */
li.even:hover {
    background-color: #302e9d;
}

li.odd:hover {
    background-color: #19359b;
}

li a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    li {
        padding: 5px;
    }
    .header {
        flex-direction: column;
    }
    .generated-time {
        margin-left: 0;
        margin-top: 5px;
    }
}





/* Laufleiste */
/* Scrollbar-Styling für Webkit-Browser (Chrome, Edge, Opera) */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #000 0.00%, #000 46.86%, #000 100.00%);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #000 0.00%, #000 100.00%);
    border-radius: 8px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #000 0.00%, #000 100.00%);
}

::-webkit-scrollbar-button:single-button {
    /* background-color: #ffffff; */
    display: block;
    border-style: solid;
    height: 13px;
    width: 16px;
}

/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #000 transparent;
}

/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 8px 8px 0 8px;
    border-color: #000 transparent transparent transparent;
}