/* for new project */

body {
  font-family: Arial, Helvetica, sans-serif;
}

 /* for the options select box */
.input[type=text], select {
  width: 80%;
  padding: 5px 5px;
  margin: 8px 0;
  display: inline-block;
  border: 2px solid rgb(100,100,100);
  border-radius: 6px;
  box-sizing: border-box;
}

/* The Modal window OK */
.projcontainer {
	font-size: 12px;
  display: none; /* Hidden by default */
  /* position: relative;  */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 20px; /* Location of the box */
  right: 40%;
  top: 5%;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content OK */
.proj-content {
	font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(180,180,180); /* grey */
  margin: auto;
  padding: 10px;
  border: 4px solid rgb(0,0,0);
  width: 15%;
}

/* The Close Button (cross at top right, not needed)*/
.close {
  color: rgb(255,0,0);  /* red */
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.button {
	font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(255,0,0);
  border: none;
  color: green;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
/* applies to the border of the actual button*/
.acceptButProj {
	font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(0,255,0);
  border: none;
  color: green;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.saveButProj {
	font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(100,150,0);
  border: none;
  color: green;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.cancelButProj {
	font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(200,0,0);
  border: none;
  color: red;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

