:root {
    --accentColor: #db0000;
    --mainColor: rgb(77, 77, 77);
}

a:hover .map-highlight {
    fill: var(--accentColor) !important;
    /* stroke: var(--accentColor) !important;
    stroke-width: 10.25908 !important; */
}

a:hover .triceps-highlight {
    /* fill: var(--accentColor) !important; */
    /* opacity: 0.5 !important; */
    /* stroke: var(--accentColor) !important;*/
    stroke-width: 10 !important;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    background-color: rgb(255, 255, 255);
    color: var(--mainColor);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.layout {
    display: grid;
    /* grid-template-rows: 0.5fr 0.4fr 0.4fr 3fr 3fr; */
    /* justify-content: center; */
}

.title {
    font-weight: bold;
    font-size: 4em;
    text-align: center;
    text-align: center;
    padding-top: 1vh;
    margin-bottom: 1vh;
}

.infoText {
    text-align: left;
    margin-bottom: 3vh;
    margin-top: 30px;
}


/* the svg images */

.anatomy {
    margin-top: 50px;
    width: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px
}

.svg {
    width: 400;
}

.detailAnatomy {
    margin: 0 auto;
}

.muscleTitle {
    margin-top: 1.5em;
    margin-bottom: 1em;
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    color: var(--accentColor);
}

.table {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.5em;
    /* border-collapse: separate;
    border-spacing: 5em; */
}

.tableRow {
    background-color: transparent;
}

.name {
    width: 300px;
}


/* +- Buttons, alt */

.button {
    background-color: var(--accentColor);
    color: white;
    width: 2em;
    height: 2em;
    border-radius: 10px;
    font-weight: bold;
    border: 0px;
    font-size: 0.5em;
}

.button:active {
    background-color: var(--mainColor);
}

.button:disabled {
    background-color: lightgray;
}


/* toggle-button, Rest steht in eigener CSS */

.switch-button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}


/* PDF anzeigen, Liste leeren */

.link {
    text-decoration: none;
    color: white;
    background-color: var(--mainColor);
    border-radius: 30px;
    font-weight: bold;
    padding: 10px;
}

.link:hover {
    background-color: var(--accentColor);
}

.infoLink {
    text-decoration: none;
    color: var(--accentColor);
    font-size: 0.7em;
}

.submitButton {
    text-decoration: none;
    text-align: center;
    color: white;
    background-color: var(--mainColor);
    border-radius: 30px;
    font-weight: bold;
    padding: 10px;
    border: 0px;
    font-size: 1em;
    /* width: 5.5em; */
    height: 2.5em;
    align-self: center;
    margin-bottom: 60px;
}

.submitButton:hover {
    background-color: var(--accentColor);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: var(--mainColor);
    text-align: center;
    font-size: 10pt;
    opacity: 1;
    background-color: white;
}

.footer a {
    color: var(--accentColor);
}

@media(max-width:700px) {
    body {
        width: 100%;
    }
    .infoText {
        font-size: 30pt;
        text-align: center;
        margin: 30px auto;
    }
    .link {
        font-size: 2em;
    }
    .svg {
        width: 400;
    }
    .footer {
        font-size: 15pt;
    }
}


/* @media only screen and (max-width: 1000px) {
    .title {
        font-size: 5em;
    }
    .infoText {
        font-size: 2em;
        margin-bottom: 3em;
        background-color: blue;
    }
    

.muscleTitle {
    font-size: 4em;
}

.table {
    font-size: 3em;
    row-gap: 1em;
}

.name {
    width: 500px;
}

.button {
    text-align: center;
    vertical-align: top;
    width: 3em;
    height: 3em;
    border-radius: 30px;
    margin-bottom: 1vh;
}

.switch-button {
    width: 800px !important;
    border-radius: 60px !important;
    padding-right: 400px !important;
    font-size: 3em !important;
}

.switch-button::before {
    width: 400px !important;
}

.switch-button-checkbox:checked+.switch-button-label:before {
    -webkit-transform: translateX(400px) !important;
    transform: translateX(400px) !important;
    -webkit-transition: -webkit-transform 300ms linear !important;
    transition: -webkit-transform 300ms linear !important;
    transition: transform 300ms linear !important;
    transition: transform 300ms linear, -webkit-transform 300ms linear !important;
}

.switch-button-checkbox+.switch-button-label:before {
    border-radius: 60px !important;
}


}
*/