body {
	font-family: Arial;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

.laptop_only {
	display: none;
}

#view_panel {
	height: 350px; 
	width: 355px; 
	margin: 0 auto; 
	overflow: scroll;
}

#container_2 {
	width: 385px;
	/*border: 1px solid red;*/
	display: flex;
}

.text_column {
	width: 95%;
	padding-left: 5px;
	padding-right: 5px;
}

.limit_width_on_mobile {
	width: 100%;
}

#device_screen_home {
	width: 100%; 
	height: 100%;
	margin: 0 auto;
/*	padding-left: 5px;
	padding-right: 5px;*/
	background-image: url('https://calynda.app/public/lachlan-gowen-RZ5TKFpdaWM-unsplash-small.jpg');
	background-size: cover;
}

#device_screen {
	width: 375px; 
	height: 600px;
	margin: 0 auto;
/*	padding-left: 5px;
	padding-right: 5px;*/
}

#header {
	width: 100%; 
	background-color: white; 
	height: 75px;
}

#menu_button {
	width: 100px; 
	border: 1px solid grey; 
	float: right;
}

#month_panel {

	border: 1px solid black;
	width: 360px;
	height: 410px;
	margin: 0 auto;
}

.week{
	border: 1px solid blue;
	width: 100%;
	height: 65px;
	margin-bottom: 3px;
	display: flex;
	flex-direction: row;
}

.day{
	border: 1px solid green;
	width: 40px;
	height: 50px;
	margin-right: 10px;
}

.view_month_as_list_day_div {
	border: 1px solid grey;
	width: 100%;
	height: auto;
	margin-right: 10px;
	margin-bottom: 5px;
}

.view_month_as_calendar_day_div {
	/*border: 1px solid grey;*/
	width: 50px;
	margin-right: 3px;
}

.login_field {
	width: 250px;
	font-size: 1.5em;
	border-radius: 5px 5px 5px 5px;
}

#logo {
	width: 250px; 
	float: left;
	margin: 0 auto;
	/*border: 1px solid black;*/
}

#logo h1 {
	line-height: 2px;
	color: #4ebce0;
	margin-top: 8px;
}

.big_button {
	width: 250px; 
	height: 40px; 
	background-color: #4ebce0;
	border: 1px solid white;
	border-radius: 10px 10px 10px 10px; 
	margin: 0 auto;
	text-align: center;
	line-height: 40px;
	font-size: 1.3em;
}

#login_box {
	width: 100%;
	height: 0px;
	overflow-x: hidden;
	/*border: 1px solid white;*/
	margin: 0 auto;
	color: black;
	position: fixed;
	bottom: 0;
	z-index: 1;
	background-color: white;
}

#date_card {
	width: 50px; 
	height: 60px; 
	border: 1px solid lightblue;  
	background-color: lightblue; 
	float: left; 
	border-radius: 5px 5px 5px 5px;
}

#frontend_footer {
/*	border: 1px solid white;*/
	width: 100%;
	height: 100px;
	/*position: fixed;*/
	bottom: 0;
	padding-bottom: 0px;
}

#frontend_footer a {
	color: blue;
}

#frontend_footer ul li {
	display:  inline;
	padding-right: 20px;
	padding-left: 7px;
	list-style: none;
}

.front_page_panel {
	width: 375px;
	height: 200px;
	border: 1px solid white;
	margin: 0 auto;
}



/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}