﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background for a modern look */
    color: #f5f5f5; /* Light text color */
    overflow: auto; /* Enable scrollbars when content overflows */
    background-color: black;
}

/* Container for layout */
.container {
    width: 100%; /* Container soll die gesamte Breite nutzen */
    max-width: none; /* Keine Begrenzung der maximalen Breite */
    padding: 20px;
    box-sizing: border-box; /* Padding und Border in die Gesamtbreite einbeziehen */
}

/* Section headings */
.section h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Checkbox group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 10px; /* Abstand zwischen den Elementen */
}

    /* Checkbox label styling */
    .checkbox-group label {
        display: flex;
        align-items: center;
    }

    /* Checkbox styling (optional) */
    .checkbox-group input[type="checkbox"] {
        margin-right: 8px; /* Abstand zwischen Checkbox und Label */
    }

/* Container for input groups */
.input-group-container {
    display: flex;
    gap: 20px; /* Space between the input groups */
    flex-wrap: wrap; /* Wrap input groups if there's not enough space */
}

/* Style for input groups */
.input-group {
    flex: 1; /* Grow to fill available space */
    min-width: 200px; /* Adjusted minimum width for better fit */
}

    /* Input fields styling */
    .input-group label {
        display: block;
        margin-bottom: 5px;
    }

    .input-group input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

/* Button styling */
button {
    background-color: #1e88e5; /* Blue color for buttons */
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #1565c0; /* Darker blue on hover */
    }

#visualizer {
    width: 100%;
    height: 100px; /* Set height relative to the viewport height */
    max-width: 100%;
    border: 1px solid #fff;
    background-color: #333;
    display: block;
}
