@charset "utf-8";
/* CSS Document */

.calibration-button-container {
    display: flex;
}

/* Download Area */
.calibration_download_area {
    position: relative;
}

.calibration_download_area.download-active-border {
    border: 3px dashed #007bff;
    border-radius: 8px;
}

#copy_button_modal_calibration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    font-size: 14px;
}

.calibration_modal p.calibration-title {
    font-size: 20px;
}

.calibration_modal {
    text-align: left;
}

h2 {
    color: #000000;
    font-weight: normal;
    margin-bottom: 50px;
}

table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 0;
}

table, th, td {
    border: none;
    padding-left: 0;
}

th {
    text-align: left;
}

.wrapper ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    font-family: Consolas, "Lucida Console", monospace;
    font-weight: normal;
}

.wrapper li {
    margin-bottom: 1px;
}

.wrapper {
    width: 900px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    background-color: white;
    text-align: left;
}

#modal-content {
    max-height: 1300px;
    overflow-y: auto;
}

/* Gestaltet den gesamten Scrollbalken */
#modal-content::-webkit-scrollbar {
    width: 10px; /* Breite des Scrollbalkens */
}

/* Gestaltet den Hintergrund des Scrollbalken-Tracks */
#modal-content::-webkit-scrollbar-track {
    background: white; /* Hintergrundfarbe des Tracks */
}

/* Gestaltet das Scrollbalken-Handle (Thumb) */
#modal-content::-webkit-scrollbar-thumb {
    background: white; /* Standardfarbe des Thumbs */
    border-radius: 10px; /* Abrundung der Ecken */
}

/* Beim Hover den Scrollbalken-Handle sichtbar machen */
#modal-content:hover::-webkit-scrollbar-thumb {
    background: lightgrey; /* Farbe des Thumbs beim Hover */
}

/* Ändert die Farbe des Thumbs beim Hover */
#modal-content:hover::-webkit-scrollbar-thumb:hover {
    background: grey; /* Dunklere Farbe beim Darüberfahren */
}