/* Style um Karte auf gesamten Bildschirm darzustellen */
html,body,#karte {
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 2;
}  

/* Style für die Überschrift */
#text_ueberschrift{
    position: absolute;
    top: 5px;
    left: 50px;
    width: 500px;
    z-index: 4;
    background: #242C14;
    border-radius: 5px;
    color: #F2EFE9;
    padding: 4px 8px;
    opacity: 0.85;
    white-space: nowrap;
    font-size: small;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;  
}

/* Style für die Kategorien-Box */
#kategorien{
    position: absolute;
    top: 95px;
    left: 15px;
    width: 170px;
    z-index: 4;
    background: #242C14;
    border-radius: 5px;
    color: #F2EFE9;
    padding: 4px 8px;
    opacity: 0.85;
    white-space: nowrap;
    font-size: small;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;  
}

input.last{
    margin-bottom: 10px;
}


/* Style für die Kartenhintergrund-Box */
#hintergrund{
    position: absolute;
    top: 450px;
    left: 15px;
    width: 170px;
    z-index: 4;
    background: #242C14;
    border-radius: 5px;
    color: #F2EFE9;
    padding: 4px 8px;
    opacity: 0.85;
    white-space: nowrap;
    font-size: small;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;  
}

select{
    margin-bottom: 10px;
}

option{
    font-size: small;
}


/* Style für die Überschriften in den Infoboxen */
td.top{
    font-size: medium;
    font-weight: bold;
}


/* Style für die Hyperlinks in den Infoboxen */
a{
    color: #F2EFE9;
}


/* Style für den Cluster-Regler */
#cluster_regler {
    position: absolute;
    top: 560px;
    left: 15px;
    width: 170px;
    z-index: 4;
    background: #242C14;
    border-radius: 5px;
    color: #F2EFE9;
    padding: 4px 8px;
    opacity: 0.85;
    white-space: nowrap;
    font-size: small;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;  
}

/* Style für das Popup-Fenster -> Infoboxen zu den Symbolen*/
.ol-popup {
    position: absolute;
    background: #242C14;
    color: #F2EFE9;
    opacity: 0.7;
    white-space: normal;
    font-size: small;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif; 
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    width: 240px;

  }

  .ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
  }

  .ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
  }

  .ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
  }

  .ol-popup-closer:after {
    content: "✖";
  }
