@charset "UTF-8";

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

#content {
    flex: 80%;
    height: 100vh;
    overflow-y: auto;
    background-color: #EEE;
}

#homeFlex {
    display: flex;
}

#sidebar {
    width: 300px;
    height: 100vh;
    padding: 5px;
    background-color: #CCC;
    overflow-y: auto;
    display: none;
}
#sidebar.open {
    display: block;
}

@media screen and (max-width: 700px) {
    #content {
        overflow-y: visible;
        height: auto;
    }

    #homeFlex {
        flex-direction: column;
    }

    #sidebar {
        width: 100vw;
        height: auto;
    }
}

#startPhotoDate, #endPhotoDate, #photoDate
{
	width: 100px;
	text-align: center;
}

.ui-datepicker-trigger {
    margin-left: 5px;
    margin-bottom: -4px;
    height: 20px;
    cursor: pointer;
}