/* Allgemeine Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c3e50;
    color: lightgray;
    padding: 20px;
}

code {
    color:#f39c12;
}

/* Code-Container */
.code-container {
    position: relative;
    margin: 20px 0;
    border-radius: 3px;
    overflow: hidden;
}

/* Code-Header */
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23241f;
    padding: 5px 10px;
}

.code-header span {
    color: lightgray;
    font-weight: bold;
}

/* Button-Stile */
button {
    background: none;
    border: none;
    color: lightgray; 
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.next-button {
    background-color: transparent; /* Transparenter Hintergrund */
    border: none; /* Kein Rand */
    color: #f39c12; /* Schriftfarbe #f39c12 */
    cursor: pointer;
}

button .icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

button .copy-icon {
    background-image: url('path/to/copy-icon.png');
}

button .check-icon {
    background-image: url('path/to/check-icon.png');
}

/* Vorformatierter Text */
pre {
    margin: 0; 
    border-radius: 0 0 5px 5px;
}

/* Header-Stile */
#header {
    background-color: 23241f;
    color: lightgray;
    padding: 20px;
    display: flex;
    align-items: center;
}

#header img {
    width: 80px;
    height: auto;
    margin-right: 20px;
}

#header h1 {
    font-size: 16px;
    margin: 0;
    text-align: right;
    color: lightgray;
}

#header span {
    font-size: 12px;
    text-align: right;
    flex: 1;
    margin-bottom: 20px;
    color: lightgray;
}

#header div {
    flex: 1;
    text-align: right;
}

/* Icon-Stile */
.icon.copy-icon::before {
    content: '\1F4CB'; 
    font-size: 12px;
}

.icon.check-icon::before {
    content: '\2714';
    font-size: 12px;
}

/* Sprachenlabel */
.language-label {
    background-color: rgba(211, 211, 211, 0);
    padding: 2px 10px;
    font-size: 10px;
    border: none;
    cursor: pointer;
    color: #000;
    border-top-left-radius: 5px;
}

/* Copy-Button */
.copy-btn {
    float: right;
    background-color: rgba(211, 211, 211, 0);
    font-size: 10px;
    transition: background-color 0.3s;
    border-top-right-radius: 3px;
}

/* Überschriften-Stile */
h1 {
    color: #3498db;
}

h2 {
    color: #f39c12;
}

h3 {
    color: #f39c12;
}

/* Besuchte Links */
a:visited {
    color: #8c8c8c;
}

.link_weiter {
    text-align: right;
    color:#f39c12;
}

.steps-list li {
    list-style-type: decimal;
    margin-bottom: 10px; /* Anpassen, wie viel Abstand du zwischen den Listenelementen möchtest */
}
