/*
    margin:top right bottom left;
    style for home page 1
*/
* {
    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: 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{
    width: 100%;
    height: 90vh;
    display: flex ;
    justify-content: left;
    margin:5px 5px 5px 0;
    padding:0;
    }

#wrap #working_area{
    display:block;
    width: 94vw; 
    margin: 0 5px 0 5px;
    background-color: white;
    } 

#wrap #wrap_right{
    display:block;
    width: 7vw; 
    font-size:1.4em;
    background-color: #138fa0;
    border: 2px solid black;
    border-radius: 5px;
    display: flex;
    flex-flow: column;
}
  
#wrap_right .button_camera{
    width: fit-content;
    border: 2px solid black;
    margin:5px 5px;
    border-radius: 5px;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
}

#wrap_right .button_camera:hover {
    background-color: red;
    color: white;
}

/*
    Rightside area
    Camera
    Weather
*/

#camera_image{ 
    width:100%;/* from all width */
    max-width: 100%;
    max-height: 100%;  
}

.button_camera {
    width:190px; 
    height:140px; 
    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_camera:hover {
    background-color: red;
    color: white;
}
    
.btn_hangar_fromdoor{ 
    background:#138fa0 url(/airport/owners/img/camera_hangar_fromdoor.jpg) no-repeat center center/cover;
}

.btn_stor_from_door{ 
    background:#138fa0 url(/airport/owners/img/camera_stor_from_door.jpg) no-repeat center center/cover;
}
    
.btn_storage{ 
    background:#138fa0 url(/airport/owners/img/camera_stor_door.jpg) no-repeat center center/cover;
}
    
  
#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{
    height: 3vh;
    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;
    }

}