body {
    margin: 0;
    box-sizing: border-box;
    background-image:radial-gradient(grey,black);
    padding:5px;
}

/* Fixierter Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Fixierter Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-weight: bold;
    color:black;
}

/* Container für den Inhalt, zentriert und max. Breite */
.container {
    margin: 40px auto 0 auto; /* Abstand für Header und Footer */
    width:99%;
    max-width: 1024px;
    display: flex;
    flex-direction: row;
    gap: 5px; /* Abstand zwischen den Spalten */
}

/* Linke Spalte: 66% der max-width */
.left-column {
    flex: 0 0 66%;
    padding: 5px;
    box-sizing: border-box;
}

/* Rechte Spalte: Rest (34%) */
.right-column {
    flex: 1; /* nimmt den verbleibenden Raum ein */
    padding: 5px;
    box-sizing: border-box;
}




/*- - - Style - - -*/

/*@font-face {
font-family: Atkinson;
src: url('gfx/NotoSans-Regular.ttf')
}*/


html, body, p, a, table, tr, td, th, ul, li, input, select, textarea {
    font-family: Atkinson, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color:black;
    text-align:left;
}

h1
{
    font-size:24px;
    line-height: 100%;
    font-weight: bold;
}

h2
{
    font-size:22px;
    line-height: 100%;
    font-weight: bold;
    color:white;
    border-bottom:2px solid darkorange;
    display:block;
    padding:3px;
}


a {
    color:black;
    text-decoration: none;
}


a.sichtbar {
    color:darkorange;
    text-decoration: underline;
    font-weight:bold;
}

td,th {
    font-size: 11px;
}



.txtgross{
    font-size: 17px;
    line-height: 17px;
}

.txtmedium{
    font-size: 14px!important;
    line-height: 14px!important;
}



.schwarz
{

    color:white;
}

.orange
{
    background-color: darkorange;
    color:white;
}

.weiss
{
    background-color: white;
}

.grau
{
    background-color: silver;
}

.ausgegraut
{
    color: #c0c0c0;
}

.center
{
    text-align:center;
    margin:auto;
}

.rund
{
    border-radius: 50%;
}

.icontop
{
    font-size: 24px;
    line-height: 100%;
}


.fotocontainer
{
    position: relative;
    width:auto;
    max-width:720px;
    min-height:480px;
    height:auto;
    float:left;
    overflow:hidden;
    margin:0 0 5px 0;
    padding:0 2px;
    border-radius: 6px;
}

.foto {
    width:auto;
    max-width:720px;
    height:auto;
    aspect-ratio: 3/2;
    border-radius: 6px;
    border:1px solid white;
    background-color: black;
}

.foto_tn {
    width:100%;
    height:auto;
    border-radius: 6px;
    border:1px solid white;
    background-color: black;
}

.histogramm
{
    display:block;
    aspect-ratio: 5/2;
    width:99%;
    height:auto;
    margin:0;
    border:1px solid white;
}

.set {
    text-align: center;
    font-size: 10px;
}

.set a{
    text-align:center;
    display:block;
    font-size: 10px;
}

.set a:hover {
    background-color:darkorange;
    font-weight: bold;
}

.aktiv
{
    font-weight: bold;
    border-bottom: 3px solid darkorange;
    background-color: white;
    color:black;
}

.banner{
    display:block;
    background-color:white;
    z-index:99;
    margin:0;
    padding:0 5px;
}

.inaktiv
{
    font-weight: normal;
    background-color: whitesmoke;
    color:gray;
}

.menu_tn
{
    display:inline-block;
    min-width:140px;
    width:15%;
    margin:5px;
    border-radius:6px;
    background-color:silver;
    padding:1%;
}

.info
{
    color:black;
    width:240px;
    background-color: white;
    border: 2px solid silver;
    margin:30px auto;
    padding:20px 20px 20px 100px;
    background-image: url('gfx/camera.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: 10px;
    border-radius: 15px;
}

/* Responsive Anpassung bei kleineren Bildschirmen */
@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }
    .left-column, .right-column {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .histogrammcontainer, .histogramm
{
    display:none;
}
    
    set,.set a {
        font-size: 8px;
    }

    .menu_tn
    {
        display:inline-block;
        min-width:175px;
        width:45%;
        margin:5px;
        border-radius:6px;
        background-color:silver;
        padding:1%;
    }
    
    .fotocontainer
{
    position: relative;
    width:auto;
    min-height:240px;
}

.foto {
    width:auto;
    max-width:100%;
    height:auto;
    aspect-ratio: 3/2;
    border-radius: 6px;
    border:1px solid white;
    background-color: black;
}



/*Lupenfunktion*/
.magnifier-lens {
    position: absolute;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: crosshair;
    box-shadow: 0 0 5px #000;
    pointer-events: none;
    visibility: hidden;
    background-repeat: no-repeat;
}

/*.image-container {
    position: relative;
    display: inline-block;
}*/

img {
    display: block;
    max-width: 100%;
}





