:root {
    --primary-color: #435761;
    --hover-color: #f3f3f3;
    --text-color: #333;
    --border-radius: 6px;
    --border-color:#43576194;
    --button-color:#a1b5bf;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}

.color{
    color: #4d5411be;
}

@font-face {
    font-family: computerFont;
    src: url(font/ProggyClean.ttf);
}
  
.jp-cfont {
    font-family: 'Courier New', Courier, monospace;
}
  
html{
    scroll-behavior: smooth;
 
}
i {
    margin: 0 !important;
    padding: 0 !important;
    /*text-shadow: 0 0 3px #000;*/
}
a{
    text-decoration: none !important;
}

.jp-nav-a {
    /* display: table-cell; */
    margin: 4px 6px 4px 0px;
    height: 40px;
    width: 40px !important;
    padding-top: 12px;
    text-align: center;
    /* align-content: center; */
}
/* 1. DER GESAMTE BALKEN-BEREICH */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent !important; /* Hintergrund erzwingen */
}

/* 2. DER TRACK (Hintergrund-Schiene) */
::-webkit-scrollbar-track {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* 3. DIE PFEILE (Oben/Unten/Links/Rechts) AUSBLENDEN */
::-webkit-scrollbar-button {
    display: none !important;
    width: 0;
    height: 0;
}

/* 4. DER SCHIEBER (Handle) */
::-webkit-scrollbar-thumb {
    background: #4357617e !important;
    border-radius: 10px;
    /* Ein kleiner Trick: Ein transparenter Rand lässt den Balken schmaler wirken */
    border: 1px solid transparent; 
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: #314047 !important;
}

/* 5. DIE ECKE (wo sich x- und y-Scrollbar treffen) */
::-webkit-scrollbar-corner {
    background: transparent !important;
}

/* 6. FIREFOX UNTERSTÜTZUNG (Wichtig!) */
* {
    scrollbar-width: thin;
    scrollbar-color: #4357617e transparent;
}

.jp-overflow-hidden {
    overflow: hidden;
}
.jp-menü {
    display: block;
    margin-top: 50px;
    /* z-index:2; */
    /* font-family: 'Indie Flower', cursive; */
}
.jp-menü-bar {
    display: block;
    padding: 4px 7px 5px 10px;
    border-bottom: 0.5px solid lightgrey;
}
.jp-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 5px;
    font-size: 12px;
    font-weight: 600;
    min-width: 75px;
    color: var(--text-color);
    background-color: var(--button-color);
    border: 1px solid var(--border-color);
    border-radius: 4px; /* Sanfte Ecken */
    cursor: pointer;
    transition: all 0.3s ease; /* Weiche Animation */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
/* Hover-Effekt (Maus drüber) */
.jp-button:hover {
    background-color: var(--hover-color);
    /* transform: translateY(-0.5px); Button hebt sich leicht ab */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
/* Klick-Effekt (Aktiv) */
.jp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.jp-input-group {
    margin-bottom: 20px;
    /* font-family: 'Segoe UI', Roboto, sans-serif; */
}
.jp-input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151; /* Dunkelgrau */
}
.jp-input {
    width: 100%;
    padding: 5px 5px;
    font-size: 14px;
    color: #1f2937;
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* Hellgrauer Rand */
    border-radius: 6px; /* Abgerundete Ecken */
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    outline: none; /* Standard-Rahmen entfernen */
}
/* Der Fokus-Effekt (wenn man reinklickt) */
.jp-input:focus {
    border-color: var(--border-color); /* Blau */
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); /* Sanfter "Glow"-Ring */
    background-color: #fff;
}
/* Styling für den Platzhalter */
.jp-input::placeholder {
    color: #9ca3af;
}
/* Zustand bei Fehlern (optional) */
.jp-input.error {
    border-color: #ef4444;
}
.jp-input.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.jp-themen-button {
    display: inline-block;
    height: 50px;
    width: 50px;
    margin: 5px 2px 5px 5px;
    padding: 2px 0px 0px 0px !important;
    box-shadow:0 1px 2px 0 rgba(0,0,0,0.16),0 2px 4px 0 rgba(0,0,0,0.12);
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    font-size: 20px !important;
    border-radius: 6px;
}
.jp-themen-button:hover, .jp-themen-button-2:hover {
    box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.jp-themen-button-2 {
    display: inline-block;
    height: 35px;
    width: 35px;
    margin: 5px 2px 5px 5px;
    padding: 2px 0px 0px 0px !important;
    box-shadow:0 1px 2px 0 rgba(0,0,0,0.16),0 2px 4px 0 rgba(0,0,0,0.12);
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    font-size: 20px !important;
    border-radius: 6px;
    background-color: white;
}
.jp-themen-div{
    border: 0.5px solid rgb(201, 201, 201);
    border-radius: 10px;
    display: inline-block;
    margin: 2px;
    padding: 4px;
}
.jp-div-box{
    border: 0.5px solid rgb(201, 201, 201);
    border-radius: 6px;
    margin: 10px 0px;
    padding: 5px;
}
input[type="file"]::file-selector-button, 
input[type="file"]::-webkit-file-upload-button {
	background: #04AA6D;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 4px 10px;
	cursor: pointer;
	transition: background 0.2s;
	text-transform: uppercase;
    font-size: 12px;
    margin: 10px;
}

input[type="file"]::file-selector-button:hover {
	background: #147250;
}
.jp-border-radius {
    border-radius: 5px;
}
.form-error {
    color:red;
}
.form-success {
    color:green;
}
.input-error {
    box-shadow: 0 0 3px red !important;
}
.jp-overflow, .math {
    overflow-x: auto;
    overflow-y: hidden;
}
.math {
    z-index: -1;
}
.jp-hide {
    display: none;
}
.jp-show {
    display:block;
}
img {
    max-width: 100%;
}
.jp-border-bottom{
    border-bottom: 0.5px solid rgb(187, 187, 187);
}
.jp-toggle-div{
    padding: 0px 0px 0px 0px;
    margin-bottom: 2px;
    border-radius: 5px;
    /* border-bottom: 0.2px solid rgb(210, 210, 210); */
}
.jp-toggle-div:hover{
    /* cursor: pointer;
    background-color: rgb(240, 240, 240); */
    /* border-bottom: 0.2px solid rgb(240, 240, 240); */
}
.jp-toggle-span {
    /* Navigation im Inhalt */
    display: inline-block;
    font-size: 18px;
    padding-top: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    text-align: center;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    /* border-bottom: 0.2px solid rgb(210, 210, 210); */
}
.jp-toggle-span:hover, .jp-toggle-stufe:hover{
    cursor: pointer;
    background-color: rgb(240, 240, 240);
    box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    /* border-bottom: 0.2px solid rgb(240, 240, 240); */
}
.jp-toggle-stufe{
    /* Klassenstufe */
    display: inline-block;
    font-size: 16px;
    margin: 5px 5px 5px 0px !important;
    border-radius: 10px;
    min-width: 35px;
    height: 35px;
    text-align: center;
    border: rgb(247, 247, 247);
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    padding-top: 6px !important;
}
.jp-inhalt-div{
    padding: 0px 0px 5px 0px;
}
.jp-nav-next-before{
    position: fixed;
    bottom: 30px;
    padding-top: 4px;
    width: 40px;
    height: 40px;
    color: white;
    /* bottom: 0; */
    background-color: rgba(0,0,0,0.1);
    border-radius: 10%;
    font-size: 30px;
    text-align: center;
}
.jp-nav-next-before:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,0.3);
}
#nav-vorher {
    left: 30px;
}
#nav-nachher {
    right: 30px;
}
.jp-liste {
    padding-left: 20px;
}
.jp-liste ol{
    margin-bottom: 10px;
}
#thema{
    margin-bottom: 10px;
}
.jp-klassenstufe-div {
    display: inline-block;
    margin-bottom: 10px !important;
    border:0.2px solid rgb(210, 210, 210);
    border-radius: 15px;
    background-color: #eeeeee !important;
    padding: 0px 6px 6px 6px;
}
.jp-color {
    background-color: #010101;
}
.jp-table {
    border-spacing: 2px 6px;
    overflow-x: auto;
    overflow-y: hidden;
}
.jp-table td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0px 10px;
    width: 100px;
    text-align: center;
    font-size: 12px;
    background-color: #eeeeee;
}
.jp-table td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #eeeeee;
    padding: 2px 10px 2px 5px;
}
.jp-table-math {
    border-spacing: 6px 6px;
    overflow-x: auto;
    overflow-y: hidden;
}
.jp-table-math th {
    padding: 5px 10px;
    font-size: 14px;
}
.jp-table-math td {
    border-radius: 4px;
    border: 1px solid grey;
    padding: 5px 10px;
    font-size: 13px;
    background-color: #ffffff;
}

/* Neuer Tabellenstyle */
.jp-table-new-container {
    overflow-x: auto;
    overflow-y: auto;
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-height: 450px;
    /* font-size: 14px !important; */
}

/* 2. SPEZIFISCH FÜR DEINE TABELLE (Dezenter) */
.jp-table-new-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: transparent;
}

.jp-table-new-style{
    border-collapse: collapse;
    min-width: 100%;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background-color: white;
    font-size: 15px !important;
    table-layout: auto !important; /* Erlaubt Spalten, sich an den Inhalt anzupassen */
}
.jp-table-new-style thead tr{
    position: sticky;
    top: 0;
    z-index:10;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}
.jp-table-new-style th, .jp-table-new-style td{
    padding: 5px 8px;
    display: table-cell; /* Verhindert, dass td zu block-Elementen werden */
    vertical-align: middle;
}
.jp-table-new-style tbody tr:nth-of-type(even){
    background-color: #f9f9f9;
}
/* --- DYNAMISCHER HOVER-EFFEKT --- */
.jp-table-new-style tbody tr {
    border-bottom: 1px solid #dddddd;
    transition: all 0.2s ease; /* Weicher Übergang */
    cursor: pointer;
}
.jp-table-new-style tbody tr:hover {
    background-color: var(--hover-color) !important;
    /* transform: scale(1.01); Minimales "Herausspringen" */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #435761;
    /* font-weight: bold; */
}
/* Status-Badges 
.status-badge {
    background-color: #e1f7ef;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
}
.status-badge.pending {
    background-color: #fff4e5;
    color: #ff9800;
}
*/


.jp-link{
    font-size: 12px;
    /* border: 1px solid green; */
}
.jp-link td{
    margin: 2px;
    background-color:#eeeeee;
    padding: auto 10px !important;
}
.jp-link td:nth-child(1){
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    width: 35px;
    text-align: center;
    /* border-top-left-radius: 10px;
    border-bottom-left-radius: 10px; */
}
.jp-link td:nth-child(2), .jp-link td:nth-child(3){
    min-width: 70px;
    padding: auto 10px;
    text-align: center;
}
.jp-link td:nth-child(4){
    width: 48px;
    padding: 0 3px 0 0px;
    text-align: center;
    padding-top: 0px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.jp-thema {
    display: inline-block;
    /* margin-top: 5px; */
    /* margin-bottom: 10px; */
    /* margin-right: 5px; */
    padding: 0px 20px 0px 20px;
    border-radius: 10px;
    /* min-width: 40px; */
    /* height: 40px; */
    /* text-align: center; */
    border: 1px solid black;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    /* margin-bottom: 0px !important; */
    /* padding-top: 7px !important; */
    /* font-size: 18px !important; */
}
.jp-wrapper {
    margin-right: auto; /* 1 */
    margin-left: auto; /* 1 */
    max-width:1200px; /* 2 */
    /* padding-right: 10px; 3 */
    /* padding-left: 10px; 3 */
}
.jp-main-menü {
    display: block;
}
.jp-top {
    position:fixed;
    width:100%;
    /* z-index:1; */
    top: 0px;
    z-index: 1000;
}
.jp-logo {
    display: inline-block;
    margin: 3px 0px 0px 10px;
    border-radius: 5px;
}
.jp-logo img{
    padding: 4px 5px 0px 5px;
    height: 42px;
}
.jp-logo:hover {
    background-color: #647b85;
}
.jp-stufe-white {
    background-color: white;
}
.jp-stufe-clicked {
    background-color: black !important;
}
.jp-stufe-light {
    background-color: #647b85;
    color: white;
}
.jp-stufe-light:hover {
    color: #647b85;
}
.jp-check-btn {
    margin: 4px;
    padding: 2px 4px;
    border-radius: 2px;
}
.jp-input-field {
    padding: 2px 4px;
    border-radius: 2px;
    border:0.2px solid rgb(210, 210, 210);
}
.jp-beispiel {
    display: block;
    /* border-left: 4px solid green; */
    background-color: rgba(0, 141, 0, 0.064);
}
.jp-info {
    display: block;
    border-left: 4px solid rgb(210, 218, 0);
    background-color: rgba(229, 245, 0, 0.074);

}
.jp-aufgabe, .jp-knobelaufgabe ,.jp-testaufgabe {
    display: block;
    /* border-left: 4px solid rgb(0, 171, 218); */
    background-color: rgba(0, 171, 218, 0.075);
}
.jp-lösung, .jp-knobellösung, .jp-testlösung {
    display: block;
    /* border-left: 4px solid rgb(204, 0, 143); */
    background-color: rgba(204, 0, 143, 0.053);
}
.jp-rückmeldung {
    display: block;
    /* border-left: 4px solid rgb(204, 0, 143); */
    background-color: rgba(17, 105, 93, 0.115);
}
.jp-überschrift {
    width: 100%;
    padding: 0px 7px 0px 7px;
}
#ü-thema {
    background-color: #eeeeee;
    padding: 4px 10px 2px 5px;
    text-align: center;
    font-size: 20px;
}
#ü-button {
    width: 45px;
}
.jp-body {
    margin: 0 0 0 3px;
}
button:disabled,
button[disabled] {
    background-color: grey;
    color: white;
    padding: 15px;
    cursor: not-allowed;
}

.jp-toggle-aufgabe, .jp-toggle-knobelaufgabe, .jp-toggle-testaufgabe, .jp-toggle-task {
    /* Navigation im Inhalt */
    display: inline-block;
    font-size: 12px;
    padding-top: 6.5px;
    margin: 0 0 5px 5px;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    color: white;
    background-color: rgb(0, 171, 218);
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    /* border-bottom: 0.2px solid rgb(210, 210, 210); */
}
.jp-toggle-aufgabe:hover, .jp-toggle-knobelaufgabe:hover, .jp-toggle-testaufgabe:hover{
    cursor: pointer;
    background-color: rgba(0, 171, 218, 0.36);
    color: black;
    box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    /* border-bottom: 0.2px solid rgb(240, 240, 240); */
}
.jp-aufgabe-hochgeladen{
    background-color: #04AA6D;
}
.jp-aufgabe-test{
    background-color: rgb(145, 129, 86);
}
.jp-aufgabe-kommentar{
    text-decoration: underline; 
    text-decoration-thickness: 2px;
}
.jp-aufgabe-done{
    box-shadow: 0px 0px 4px 4px rgb(64, 255, 0);
}
.jp-aufgabe-todo{
    box-shadow: 0px 0px 4px 4px rgb(255, 149, 0);
}
.jp-aufgabe-notdone{
    box-shadow: 0px 0px 4px 4px rgb(255, 0, 0);
}
.jp-toggle-lösung, .jp-toggle-knobellösung, .jp-toggle-testlösung {
    /* Navigation im Inhalt */
    /* position:absolute;
    bottom: 10px; */
    display: inline-block;

    font-size: 16px;
    padding-top: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 2px;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    color: white;
    border: none;
    background-color: rgb(204, 0, 143);
    /* border-bottom: 0.2px solid rgb(210, 210, 210); */
}
.jp-toggle-lösung:hover, .jp-toggle-knobellösung:hover, .jp-toggle-knobellösung:hover{
    cursor: pointer;
    /* background-color: rgba(90, 1, 93, 0.873); */
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
    /* border-bottom: 0.2px solid rgb(240, 240, 240); */
}
.jp-toggle-wiederholung, .jp-toggle-knobelwiederholung, .jp-toggle-testwiederholung {
    /* Navigation im Inhalt */
    /* position:absolute;
    bottom: 10px; */
    display: inline-block;

    font-size: 16px;
    padding-top: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 2px;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    color: white;
    border: none;
    background-color: rgba(0, 8, 96, 0.682);
    /* border-bottom: 0.2px solid rgb(210, 210, 210); */
}
.jp-toggle-wiederholung:hover, .jp-toggle-knobelwiederholung:hover, .jp-toggle-testwiederholung:hover{
    cursor: pointer;
    /* background-color: rgb(1, 6, 61); */
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
    /* border-bottom: 0.2px solid rgb(240, 240, 240); */
}
.jp-toggle-ergebnisse, .jp-toggle-knobelergebnisse, .jp-toggle-testergebnisse {
    /* Navigation im Inhalt */
    /* position:absolute;
    bottom: 10px; */
    display: inline-block;
    font-size: 16px;
    padding-top: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 2px;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    border: none;
    color: white;
    background-color: rgba(63, 63, 63, 0.682);
    /* border-bottom: 0.2px solid rgb(210, 210, 210); */
}
.jp-toggle-ergebnisse:hover, .jp-toggle-knobelergebnisse:hover, .jp-toggle-testergebnisse:hover{
    cursor: pointer;
    background-color: rgba(103, 103, 103, 0.986);
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
    /* border-bottom: 0.2px solid rgb(240, 240, 240); */
}
.jp-green{
    color: green;
}
.jp-yellow{
    color: yellow;
}
.jp-red{
    color: red;
}
.jp-orange{
    color: orange;
}
.jp-einfügen{
    display: inline-block;

    font-size: 16px;
    padding-top: 0px;
    margin: 2px 2px 2px 2px;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    border: none;
    color: white;
    background-color: rgba(0, 146, 17, 0.682);
}
.jp-einfügen:hover {
    cursor: pointer;
    background-color: rgba(0, 146, 17, 0.426);
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
}
.jp-senden{
    display: inline-block;

    font-size: 16px;
    padding-top: 0px;
    margin: 2px;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    border: none;
    color: white;
    background-color: rgba(226, 0, 234, 0.682);
}
.jp-senden:hover{
    cursor: pointer;
    background-color: rgba(226, 0, 234, 0.415);
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
}
.jp-löschen{
    display: inline-block;

    font-size: 16px;
    padding-top: 0px;
    margin: 3px 3px 3px 0;
    border-radius: 7px;
    min-width: 30px;
    height: 30px;
    text-align: center;
    border: none;
    color: white;
    background-color: rgba(234, 0, 0, 0.682);
}
.jp-löschen:hover{
    cursor: pointer;
    background-color: rgba(234, 0, 0, 0.415);
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
}
.jp-eingabe{
    display: inline-block;
    font-size: 14px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(0, 146, 17, 0.682);
}
.jp-tastatur, .jp-tastatur-menü{
    border-spacing: 3px 3px;
    padding: 2px 0 -2px 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
}
.jp-tastatur-div{
    border-spacing: 0;
    padding: 0;
    margin: 0;
}
.jp-tastatur button{
    display: inline-block;

    font-size: 14px;
    padding-top: 0px;
    margin: 0;
    border-radius: 7px !important;
    height: 30px;
    text-align: center;
    border: none;
    color: white;
    background-color: rgba(80, 80, 80, 0.682);
}
.jp-tastatur-menü button{
    display: inline-block;

    font-size: 14px;
    padding-top: 0px;
    margin: 0;
    border-radius: 7px !important;
    min-width: 35px;
    height: 30px;
    text-align: center;
    border: none;
    color: white;
    background-color: rgba(0, 146, 17, 0.682);
}
.jp-tastatur button:hover, .jp-tastatur-menü button:hover{
    cursor: pointer;
    background-color: rgba(47, 47, 47, 0.149);
    color: black;
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.2),0 3px 10px 0 rgba(0,0,0,0.19);
}
.jp-navigation{
    margin-top: 5px;
    padding: 0px 10px 0px 10px;
}
.jp-svg{
    border-spacing: 3px;
}
.jp-svg td{
    height: 30px;
    background-color: white;
    text-align: center;
    padding: 0 4px;
    min-width: 40px;
    border: 1px solid grey;
    border-radius: 3px;
}
.jp-svg td:nth-child(1){

    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.jp-svg td:last-child{

    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    width: 45px;
}

.jp-db{
    border-spacing: 3px;
    font-size: 14px;
}
.jp-db td{
    height: 30px;
    background-color: white;
    text-align: center;
    padding: 0 4px;
    min-width: 40px;
    border: 1px solid grey;
    border-radius: 3px;
}
.jp-db th{
    height: 30px;
    background-color: rgba(49, 132, 145, 0.082);
    text-align: center;
    padding: 0 4px;
    min-width: 40px;
    border: 1px solid rgb(128, 128, 128);
    border-radius: 3px;
    font-weight: bold;
}
.jp-db td:nth-child(1), .jp-db th:nth-child(1){

    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.jp-db td:last-child, .jp-db th:last-child{

    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.jp-db input {
    border: none;
}
.jp-rechenaufgaben{margin-left: 20px;}
.jp-rechenaufgaben td{
    text-align: right;
}

select{
    border: 1px solid white;
    text-align: center;
    background-color: white;
}
option{
    text-align: center;
}
.jp-code-input{
    border: 1px solid rgba(20, 18, 4, 0.51); 
    padding: 10px;
    border-radius: 3px; background-color: rgba(250, 221, 34, 0.112); margin: 10px 0;
    overflow-y: auto;
    font-size: 13px;
}
.jp-code-output{
    border: 1px solid green; padding: 0px 10px 0 0;border-radius: 7px; background-color: rgb(200, 255, 200); margin: 10px 0;
    overflow-y: auto;
}
.jp-ergebnis-div-inf{
    display: block;
}
/* Klasse für das Element, das scrollen soll */
.hide-scrollbar {
    /* 1. Versteckt Scrollbalken in Firefox */
    scrollbar-width: none;
    
    /* 2. Versteckt Scrollbalken in IE und altem Edge */
    -ms-overflow-style: none;
    
    /* Erlaubt weiterhin das Scrollen */
    overflow-y: auto;
    overflow-x: auto;
}
/* 3. Versteckt Scrollbalken in Chrome, Safari und neuem Edge (Blink-Engine) */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

@media(max-width: 380px){
    .jp-tastatur button{
        width: 25px;
    }
}
@media(max-width: 420px){
    .jp-mobile{
        display: none !important;
    }
}
@media(min-width: 380px){
    .jp-tastatur button{
        width: 30px;
    }


}
@media(max-width: 800px){
    .jp-content{
        padding: 5px 7px 5px 5px;
    }
    .jp-aufgabe, .jp-beispiel, .jp-knobelaufgabe, .jp-lösung, .jp-knobellösung, .jp-info, .jp-testlösung, .jp-rückmeldung, .jp-testaufgabe{
        border-radius: 5px;
        margin: 10px 0px 0px 0px;
        padding: 10px;
    }
    .jp-rechnung-div, .jp-notiz-div{
        display: block;
    }
    .jp-ergebnis-div{
        display: block;
    }
    .jp-lösung{
        border: 1px solid rgba(120, 29, 124, 0.803);
    }
    .jp-rückmeldung{
        border: 1px solid rgba(17, 105, 93, 0.803);
    }
    .jp-beispiel{
        border: 1px solid rgba(21, 65, 27, 0.633);
    }
    .jp-aufgabe, .jp-testaufgabe{
        border: 1px solid rgba(15, 15, 40, 0.496);
        background-color: white;
    }
    .jp-info{
        border: 1px solid rgba(91, 97, 28, 0.901);
    }
}

@media(min-width: 800px){
    .jp-content{
        padding: 15px;
    }
    .jp-aufgabe, .jp-beispiel, .jp-knobelaufgabe, .jp-lösung, .jp-knobellösung, .jp-info, .jp-testlösung, .jp-rückmeldung, .jp-testaufgabe{
        border-radius: 10px;
        margin: 15px 0px 0px 0px;
        padding: 12px;
        background-color: white;
    }
    .jp-lösung{
        border: 1px solid rgba(120, 29, 124, 0.803);
    }
    .jp-beispiel{
        border: 1px solid rgba(21, 65, 27, 0.934);
        background-color: rgba(0, 141, 0, 0.064);
    }
    .jp-info{
        border: 1px solid rgba(91, 97, 28, 0.901);
    }
    .jp-rückmeldung{
        border: 1px solid rgba(17, 105, 93, 0.803)
    }
    .jp-table td:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        padding: 0px 10px;
        width: 120px;
        text-align: center;
        font-size: 14px;
        background-color: #eeeeee;
    }
}


