.ScrollTable {
    width: 100%;
    max-height: 500px;
    overflow-y: scroll;
    border-collapse: collapse;
}

.ScrollTable th{
    text-align: left;
    padding-top: 12px;
    padding-left: 8px;
    padding-bottom: 12px;
    background-color: gray;
    color: white;
}

.ScrollTable tr:nth-child(even) {
    background-color: darkgrey;
}   

.ScrollTable td {
    text-align: left;
    padding-left: 8px;
}

.Color-Red {
    color: darkred;
}
.Color-Green {
    color: darkgreen;
}

.Button {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 120px;
    outline: none !important;
}

.ButtonActive {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 120px;
    outline: blue auto 1px !important;
}

.Style {
    display: none;
}

.StyleActive {
    display: unset !important;
}

/*.ImageButton img:hover {
    background: blue;
} */

.Columns {
    float: left;
}

.AbstandSeite {
    margin: 0px 10px !important;
}

.AbstandObenUnten {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.hidden {
    display: none;
}

.nobutton {
    border: none;
    background: none;
    color: #3490dc;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.ImageButton, .ImageButton:hover, .ImageButton:active, .ImageButton:focus {
    background: none;
    border: none;
    width: 100%;
    max-width: unset;
    margin: 5px auto;
    box-shadow: unset;
    -webkit-box-shadow: unset;
}

.flexContainer {
    display: flex; 
    flex-direction: row;
}

.ImageButton img, .Image {
    height: 200px !important;
    width: auto !important;
    max-width: unset !important;
    border: 1px solid black; 
    padding: 5px;
}

.modalHitbox {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 998;
}

.textTopLeft {
    text-align: left;
    margin: 0 0 auto auto;
}

.modalInput {
    position: fixed;
    left: 50%;
    top: 50vh;
    min-width: 40%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 0px 20px 10px 20px;
    border: 1px solid black;
    background: white;   
}

.smallImage {
    height: 20px;
}

.fullscreenImage {
    width: 50%;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 700px)
{
    .flexContainer {
        display: flex; 
        flex-direction: column;
    }

    .ImageButton img, .Image {
        height: auto !important;
        width: 100% !important;
        max-width: unset !important;
        border: 1px solid black; 
        padding: 5px;
        margin: 10px;
    }
}