/* This is the CSS for the ID used on page 2. */


/* The CSS below is for the way the website and app look. Be careful when making changes! */

body {
	/* Changing the style below will change the color of the background. */
  background-color: coral;
}

#phone {
  height: 600px;
  width: 350px;
  /* Changing the style below will change the color of the phone. */
	background-color: maroon;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  margin: auto;
  position:relative;
}

#menucontainer {
  position: absolute;
  right: 10px;
  padding: 0;
  margin: 0;
  z-index: 1;
}

#collapsemenu {
  float: right;
  /* Changing the style below will change the color of the menu button. */
  background-color: silver;
  border: 2px solid black;
  color: white;
  margin: 0;
  text-align: center;
  text-decoration: none;
  width: 60px;
  height: 30px;
  display: inline-block;
  font-size: 16px;
  border-radius: 0px 0px 0px 10px;
  font-weight: bold;
}

#collapsemenu:active {
  background-color: lightblue;
}

#menu {
  float: right;
  clear: right;
  margin-top: 2px;
  padding: 8px;
  border: 2px solid black;
  /* Changing the style below will change the color of the menu background. */
  background-color: steelblue;
  border-radius: 10px;
  color: white;
  display: none;
}

.menubutton {
  /* Changing the style below will change the color of the menu buttons. */
  background-color: lightblue;
  border: 2px solid black;
  width: 75px;
  color: green;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.menubutton:active {
  background-color: white;
}

#screen {
  height: 550px;
  width: 350px;
  /* Changing the style below will change the color of the screen. */
  background-color: lightblue; 
  /* Changing the style below will change the default color of the text on the screen. */
  color: black;
  margin: 0px;
  display: inline-block;
}

#decorationbutton {
  position: absolute;
  bottom: 5px;
  left: 160px;
}

#pages {
  display: none;
}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

/* The popup chat - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 100px;
  padding: 15px;
  background-color: cloud;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 100px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 2;
}