/*
    margin:top right bottom left;
    /airport/meteo
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Noto+Sans+JP", sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 1;
    width: auto;
    display: flex ;
    flex-flow: column;
}

.menu-top{ 
    height: fit-content;
    margin-top: 5px; 
    background-color:#083f38;
    border: 2px solid black;
    border-radius: 5px;
    text-align:center;
    display: flex ;
    justify-content: center;
    flex: 1;
}

.menu-top .menu-tab{
    color: white;  
    border: 2px solid rgb(233, 218, 17);
    border-radius: 5px;
    margin: 5px;
    padding:5px 5px;
    text-decoration: none;
}

#wrap{
    display: inline-flex;
    height: 95vh;
    margin:5px 0 5px 0;
    padding:0;
    border: 2px solid rgb(56, 58, 192);
}

#wrap #working_area{
    width: 85%;
    height: 100%;
    background-color: white;
    border: 2px solid rgb(56, 192, 79);
    border-radius: 5px;
    } 

#wrap #wrap_right{
    display: flex;
    flex-direction: column;
    width: 15%;
    font-size:1.4em;
    margin:0 0 0 0;
    background-color: #138fa0;
    border: 2px solid black;
    border-radius: 5px;
    }

#chart{
    /*height:800px; width:1200px; 
    width:100%;/* from all width */
    width: 100%;
    height: 100%;
}

.button_chart {
    border: 2px solid;
    margin:0 4px 0 0;
    border-radius: 5px;
    padding: 16px 32px;
    background-size: 100%; /* To fill the dimensions of container (button)*/
    font-size: 16px;
    margin: 4px 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    cursor: pointer;
    }

.button_chart:hover {
    background-color: red;
    color: white;
    }
    
#data_date{
    display: flex ;
    font-size:1.2em;
}
#data_time{
    display: flex ;
    font-size:1.2em;
}
#data_timespan{
    display: flex ;
    width: 5em;
    font-size:1.2em;
}
  
.footer{
    background-color:#da1414;
    font-size:1.4em;
    padding:1px;
    text-align:right;
    background-color:#18a035;
    border: 2px solid black;
    border-radius: 5px;
    }

.footer a{
    color:#a0a0a0;
    font-weight:400;
    }

    /* Smart Phone */
@media(max-width:700px){  

    .menu-top{ 
        height: fit-content;
        margin-top: 5px;   
        background-color:#dde01a;
        font-size:0.6em;
        text-align:center;
        display: flex ;
        justify-content: center;
    }
    .menu-top .menu-tab{
        border: none;
        margin:0 10px 0 0;
        color: black;
    }

    #wrap #wrap_right{
        width: 70px; 
        margin:0 0 0 0;
        border:none;
        display: flex;
        flex-flow: column;
        }

    .button_camera {
        height: fit-content;
        width:auto;
        border:none;
        margin:2px 0 0 0;
        font-size: 0.5em;
        color: #da1414;
        padding: 0px;/* For Text on Button*/
        background-size: 100%; /* To fill the dimensions of container (button)*/
        display: inline-block;
    }

    .footer{
        display:none;
    }

}