/**
 * Copyright (c) 2024 ITSGeo GmbH
 *
 * @package   perseids simple php client
 * @author    Matthias Leonhardt
 * @license   Prop
 * @copyright itsgeo.com
 */

html,
body {
    margin:0;
    padding:0;
    height:100%;
    max-width: 1200px;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.3);
    font-size: 1rem;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
#container {
    min-height:100%;
    position:relative;
}
#header {
    background:lightcyan;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    padding: 20px;
}
#body {
    margin: 20px;
/*    border: 1px solid beige; */
    padding: 20px 20px 60px 20px;
}
#footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:20px;   /* Height of the footer */
    background:lightgrey;
    padding: 10px 0px 10px 0px;
}
#status {
    margin: 0px 20px;
}

.slider {
    position: relative;
}

#paramform {
    padding-top: 30px;
}
.pre {
    display: block;
    font-family: "Lucida Console", "Courier New", monospace;
    unicode-bidi: isolate;
    white-space: pre;
    margin: 1em 0px;
    font-size: 0.7rem;    
}
.left{
    float: left;
    font-size: 0.8rem;    
    width: 30%;
}
.right{
    float: right;
    width: 70%;
}