body
{
	font-family: Arial, Helvetica, sans-serif;
}

.container
{
	display: grid;
	grid-template-rows: auto auto 50px;	
}
	
.header
{
	background-color: #00b862;
}
	
h1.header
{
	color: #FFFFFF;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	margin: 0;
}
					
.mainContent
{
	background-color: #FFFFFF;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
		
.footerContent
{
	background-color: #005eb8;
	color: #FFFFFF;
	text-align: center;		
}


/*********************** Nav **********************************/
.menubar
{
	margin: auto;
	width: 50%;
	color: #FFFFFF;
	text-align: center;
	z-index: 900;
}

button.menubar
{
	display: inline-block;
	background-color: #005eb8;
	color: white;
	border: none;
	cursor: pointer;
	height: 40px;
	font-weight: bold;
	text-align: center;
	width: auto;
	padding: 0px 15px 0px 15px;
}
	
button.menubar:hover
{
	color: #005eb8;
	background-color: #FFFFFF;	
}


/* Dropdown Button */
.dropbtn
{
	display: inline-block;
	background-color: #005eb8;
	color: white;
	border: none;
	cursor: pointer;
	height: 40px;
	font-weight: bold;
	text-align: center;
	width: auto;
	padding: 0px 15px 0px 15px;
	z-index: 900;
}

/* The container <div> - needed to position the dropdown content */
.dropdown
{
	position: relative;
	display: inline-block;
	z-index: 900;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content
{
	display: none;
	position: absolute;
	background-color: #005eb8;
	color: white;
	font-weight: bold;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 900;
}


.dropdown-content button
{
	display: inline-block;
	background-color: #005eb8;
	color: white;
	border: none;
	cursor: pointer;
	height: 40px;
	font-weight: bold;
	text-align: center;
	min-width: 160px;
	padding: 0px 15px 0px 15px;
	z-index: 900;
}

.dropdown-content button:hover
{
	color: #005eb8;
	background-color: #FFFFFF;
	z-index: 900;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content
{
	display: block;
	z-index: 900;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn
{
	background-color: white;
	color: #005eb8;
	z-index: 900;
}

.arrow
{
	border: solid white;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
}

.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
  }


  /************************* Project Nav ***********************************/

  .projectMenubar
  {
	  display: flex;
	  margin: auto;
	  width: 100%;
	  background-color: #41b6e6;
	  color: #FFFFFF;
	  text-align: center;
	  align-items: baseline;
	  justify-content: space-between;
  }
  
  .projectMenubar button
  {
	  
	  background-color: #41b6e6;
	  color: #FFFFFF;
	  border: none;
	  cursor: pointer;
	  height: 40px;
	  font-weight: bold;
	  text-align: center;
	  width: auto;
	  padding: 0px 15px 0px 15px;
  }
	  
  .projectMenubar button:hover
  {
	  color: #41b6e6;
	  background-color: #FFFFFF;	
  }


/********************Project Layout***************************************/


.filterKanban
{
	margin-right: 10px;
}

.swimlanes
{
	display: grid;
	width: auto;
}
.swimlanesHeader
{
	display: grid;
	width: auto;
	position: sticky;
	top: 0;
	z-index: 500;
}

ul.statusGrid
{
	padding-inline-start: 0px;
}
.statusGrid
{
	display: grid;
	grid-column-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /*issue with triage list is min-content vs auto-fit*/
	overflow: visible;
	margin-bottom: 0px;
}
#lanes.statusGrid
{
	margin-top: 0px;
}

.statusColumn
{
	grid-row: 1;
	min-width: 200px;
	background: #f4f5f7;
	box-sizing: border-box;
	display: table-cell;
	list-style: none;
	margin: 0;
	padding: 1px 0 0;
	position: relative;
	vertical-align: top;
}

.statusColumnHeading
{
	grid-row: 1;
	min-width: 200px;
	background: #005eb8;
	color: #FFFFFF;
	box-sizing: border-box;
	display: table-cell;
	list-style: none;
	margin: 0;
	padding: 5px;
	position: relative;
	font-weight: bold;
	text-align: center;
}


li[id].statusColumn
{
	padding-bottom: 20px;
}

.tile
{
	/*background: #deebff;*/
	background: #FFFFFF;
	cursor: move;
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 5px;
	margin: 5px;
	padding: 10px;
	box-shadow: 2px 2px 2px #888888;
	vertical-align: top;
	font-size: 0.9em;
}
.tile:hover
{
	box-shadow: 5px 5px 10px rgba(36, 36, 36, 0.5);
}
.tile-top
{
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}


.tile-title p
{
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 5px;
}

.tile-ID p
{
	margin-top: 5px;
	margin-bottom: 5px;
}

.modal-title h2
{
	margin-bottom: 10px;
}

.tile-middle
{
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

.tile-epic
{
	display: flex;
}

.tile-epic p
{
	font-weight: bold;
	padding: 2px;
	border-radius: 3px;
	margin: 5px;
}

.tile-priority
{
	display: flex;
	text-align:center;
}


.tile-priority p
{
	font-weight: bold;
	padding: 4px;
	border-radius: 50%;
	margin: 2px;
	align-items: baseline;
}

.tile-footer
{
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
	margin: 0px;
	padding: 2px;
}

.tile-time
{
	display: flex;
}

.tile-person
{
	display: flex;
}

.modal {
	display: none; /* Hidden by default */
	/*position: fixed; /* Stay in place */
	position: absolute;
	z-index: 902; /* Sit on top */
	left: 0;
	top: 0;
	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 */
  }
  
 
  /* The Close Button */
  .close {
	color: #FFFFFF;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }

/* Modal Header */
.modal-header
{
	padding: 2px 16px;
	background-color: #005eb8;
	color: white;
	min-height:fit-content;
}
.modal-header input
{
	width: 90%;
	padding: 5px;
	margin-left: 2px;
	background-color:#005eb8;
	color: #ffffff;
	border-style:none;
	font-size: 1em;
	font-weight: bold;
}
  
 /* Modal Body */
.modal-body
{
	padding: 2px 16px;
	align-items: center;
}
.modal-body textarea
  {
	width: 90%;
	padding: 12px 20px;
	border-style: none;
	background-color: #C8C6C4;
	min-height: 130px;
	overflow: auto;
	outline: none;

  }


  .modal-body input
  {
	margin-left: 2px;
	border-style: groove;
  }

  .modal-body select
  {
	margin-left: 2px;
	border-style:groove;
  }
  #addTask
  {
	width: 70%;
  }

select.tile-epic {
    font-size: 18px;
    background-color: #457831;
}

.modal-time
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}



  /* Modal Footer */
  .modal-footer {
	padding: 2px 16px;
	background-color: #005eb8;
	color: white;
  }
  
  /* Modal Content */
  .modal-content {
	/*position: relative;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	z-index: 999;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	/*width: 80%;*/
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  }
  
  /* Add Animation */
  @keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
  }

.addNewTask
{
	display: none;
	position:relative;
	bottom: 0;
	right: 15px;
	border: 3px solid #f1f1f1;
	z-index: 9;
	width: 300px;
}

/* Add styles to the form container */
.newTask-container {
	max-width: 300px;
	padding: 10px;
	background-color: #f4f5f7;
	margin: auto;
	text-align: center;
  }

/* The Close Button */
.closeNewTask
{
	color: #000000;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
	  
.closeNewTask:hover,
.closeNewTask:focus {
	color: #ff0000;
	text-decoration: none;
	cursor: pointer;
}

/* The delete task Button */
.deleteTask
{
	position:relative;
	color: #ff0000;
	float: right;
	right: -10px;
	font-size: 16px;
	font-weight: bold;
}
	  
.deleteTask:hover,
.deleteTask:focus {
	color: #ff0000;
	text-decoration: none;
	cursor: pointer;
}

/* The delete task Button */
.deleteTile
{
	position:relative;
	color: #ffffff;
	background-color: #E15449;
	float: right;
	right: 10px;
	font-size: 16px;
	font-weight: bold;

	padding: 4px;
	border-radius: 10%;
	margin: 2px;
	align-items: baseline;
}
	  
.deleteTile:hover,
.deleteTile:focus {
	color: #E15449;
	background-color: #000000;
	text-decoration: none;
	cursor: pointer;
}

/* The CloseTask Button */
.closeTask
{
	position:relative;
	color: #000000;
	float: right;
	right: 20px;
	top: 5px;
	font-size: 28px;
	font-weight: bold;
}
  
  .closeTask:hover,
  .closeTask:focus
{
	color: #FF0000;
	text-decoration: none;
	cursor: pointer;
}



  /* Full-width input fields */
.newTask-container input[type=text]
{
	width: 80%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #ffffff;
}

  /* When the inputs get focus, do something */
  .newTask-container input[type=text]:focus, .newTask-container input[type=password]:focus {
	background-color: #E6EFF8;
	outline: none;
  }
  
  /* Set a style for the submit/login button */
  .newTask-container .btn {
	background-color: #04AA6D;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom:10px;
	opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .newTask-container .cancel {
	background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .newTask-container .btn:hover, .open-button:hover {
	opacity: 1;
  }


/********************Tasks*************************************************/

.taskForm
{
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-template-rows: auto;
	grid-template-areas:
		"summary time"
		"details tasks"
		"taskSubmit taskSubmit";
	gap: 10px 10px;
}

.taskSummary
{
	grid-area: summary;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: baseline;
	border-radius: 5px;
}
.taskSummaryGrid
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	grid-template-areas:
		"task task"
		"project epic"
		"assigned raised"
		"status priority";
	gap: 3px 3px;
}
.taskSG
{
	grid-area: task;
	display: flex;
	align-items: baseline;
} 
.projectSG
{
	grid-area: project;
	display: flex;
	align-items: baseline;
}

.epicSG
{
	grid-area: epic;
	display: flex;
	align-items: baseline;
}
.assignedSG
{
	grid-area: assigned;
	display: flex;
	align-items: baseline;
}
.raisedSG
{
	grid-area: raised;
	display: flex;
	align-items: baseline;
}
.statusSG
{
	grid-area: status;
	display: flex;
	align-items: baseline;
}
.prioritySG
{
	grid-area: priority;
	display: flex;
	align-items: baseline;
}



.taskTime
{
	grid-area: time;
	background-color: #ffffff;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	gap: 3px 3px;
	align-items: baseline;
	border-radius: 5px;
}

.taskSubmit
{
	grid-area: taskSubmit;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: baseline;
	border-radius: 5px;
}

.taskDetails
{
	grid-area: details;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: baseline;
	border-radius: 5px;
}

.taskTasks
{
	grid-area: tasks;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: baseline;
	border-radius: 5px;
	line-height: 80%;
}

.taskForm legend
{
	text-align: center;
	font-weight: bold;
	background-color: #f4f5f7;
}

.taskForm fieldset
{
	background-color: #f4f5f7;
}

.taskSummaryGrid label
{
	width: 30%;
}


#titleLabel.taskinput
{
	width: 18%;
}


.taskTime input
{
	display: block;
	width: min-content;
	align-items: baseline;
}

.taskTime label
{
	width: 25%;
}

.taskItem
{
	display: flex;
	align-items: baseline;

}

.taskRow
{
	display: flex;
	align-items: baseline;
	width: 100%;
	justify-content: space-between;
	margin: 5px;
}

#taskList.taskRow
{
	flex-direction: column;
}

.taskInput
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
input.taskInput
{
	margin: 8px 8px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

textarea.taskInput
{
	width: 100%;
	margin: 8px 8px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

select.taskInput
{
	margin: 8px 8px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

#title.taskInput
{
	display: inline-block;
	width: 100%;
}

#status.taskInput
{
	display: inline-block;
	width: min-content;
}

#epic.taskInput
{
	display: inline-block;
	width: min-content;
	
}
#raisedBy.taskInput
{
	display: inline-block;
	width: 50%;
	
}
#assignee.taskInput
{
	display: inline-block;
	width: min-content;
}

#priority.taskInput
{
	display: inline-block;
	width: min-content;
}

#timeLogged.taskInput
{
	border: none;
}

.modalOpenTask
{
	flex-grow: 1;
	color: #FFFFFF;
	background-color: #4CAF50;
	font-weight: bold;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;

}
.loginButton
{
	flex-grow: 1;
	color: white;
	font-weight: bold;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
}
#login.taskItem
{
	background-color: #4CAF50;
}
#delete.taskItem
{
	background-color: #E15449;
}
button.taskItem:hover
{
	opacity: 0.8;	
}

#cancel.taskItem
{
	background-color: #005eb8;
}




/********************Schedule settings*************************************/

input[type='checkbox'].toggle
{
	display: none;
}

.lbl-toggle
{
	display: block;
  
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
  
	padding: 3px;
  
	color: #ffffff;
	background: #005eb8;
  
	cursor: pointer;
  	transition: all 0.25s ease-out;
	margin: 5px 0px 5px 0px;
}

.lbl-toggle:hover
{
	color: #005eb8;


	background: #ffffff;
}

.lbl-toggle::before
{
	content: ' ';
	display: inline-block;
  
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid currentColor;
  
	vertical-align: middle;
	margin-right: .7rem;
	transform: translateY(-2px);
  
	transition: transform .2s ease-out;
}

.collapse
{
	max-height: 0px;
	overflow: hidden;
	transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapse
{
	max-height: 400vh;
 }

.toggle:checked + .lbl-toggle::before
{
	transform: rotate(90deg) translateX(-3px);
}
  
.toggle:checked + .lbl-toggle
{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.spacer
{
	text-align: center;
	height: 30px;
	background-color: #005eb8;
	color: #FFFFFF;
	margin: 5px 0px 5px 0px;
}

.schedule-container
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	font-weight: bold;
}

.availability-container
{
	display: grid;
	grid-template-columns: repeat(11, 1fr);
	font-weight: bold;
}

.availContainer
{
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid black;
	position: relative;
	cursor: pointer;

}

.availContainerOdd
{
	background-color: #E6EFF8;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid black;
	position: relative;
	cursor: pointer;

}

.aDate, .aDay
{
	background-color: #005eb8;
	color: #FFFFFF;
	text-align: center;
	font-size: 1em;
	border: 1px solid;
	grid-column: span 2;
}

.aTime
{
	background-color: #005eb8;
	color: #FFFFFF;
	text-align: center;
	font-size: 1em;
	border: 1px solid;
}

.wDate, .wDay
{
	background-color: #005eb8;
	color: #FFFFFF;
	text-align: center;
	font-size: 1em;
	border: 1px solid;
}

.wTime
{
	background-color: #005eb8;
	color: #FFFFFF;
	text-align: center;
	font-size: 1em;
	border: 1px solid;
}		
		
.room
{
	background-color: #005eb8;
	color: #FFFFFF;
	text-align: center;
	font-size: 1em;
	border: 1px solid;	
	padding: 5px;	
}

.bookingContainer
{
	display: inline-flex;
	flex-direction: column;
	background-color: #FFFFFF;
	text-align: center;
	cursor: pointer;
}

.bookingContainer .tooltiptext
{
	visibility: hidden;
	width: 120px;
	background-color: #005eb8;
	font-size: 0.7em;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 5px;
	opacity: 0;
	transition: opacity 1s;
	/* Position the tooltip */
	position: absolute;
	z-index: 1;
  }

  .bookingContainer:hover .tooltiptext
  {
	visibility: visible;
	opacity: 1;
  }

.noBooking
{
	border: 1px solid black;
	cursor: pointer;
}
.bookingMissing
{
	background-color: #E15449;
	text-align: center;
	font-size: 1em;
	color: #FFFFFF;
	cursor: pointer;
	border: 1px solid black;	
}

.box-container
{
	display: contents;
}

.booking
{
	font-size: 0.7em;
	border: solid black;
	border-width: 0px 1px 0px 1px;
	flex: 1 1 auto;
}


.bw
{
	font-size: 0.8em;
	border: solid black;
	border-width: 1px 1px 0px 1px;
	cursor: pointer;
	max-height: 1.2em;
	overflow:hidden;
	flex: 0 1 auto;
}

/****************************New Booking Container***************************/

.bookContainer
{
	display: grid;
	grid-template-columns: repeat(20, minmax(0, 1fr));
	font-weight: bold;
	border: 1px solid black;
	position: relative;
	cursor: pointer;
}

.bookItem .tooltiptext
{
	visibility: hidden;
	width: 120px;
	background-color: #005eb8;
	font-size: 0.7em;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 5px;
	opacity: 0;
	transition: opacity 1s;
	/* Position the tooltip */
	position: absolute;
	left: 5px;
	top: 0px;
	z-index: 1;
	overflow:visible;
  }

  .bookItem:hover .tooltiptext
  {
	visibility: visible;
	opacity: 1;
  }

.bookItem
{
	display: flex;
	flex-direction: column;
	overflow:hidden;
	text-align: center;
	cursor: pointer;
	height: 100%;
	border-right: 1px solid black;
	border-left: 1px solid black;
	
}
/********************************Forms*************************/

.loginFormContainer
{
	display: inline-flex;
	flex-direction: column;
}

#invalid.formItem
{
	color: #E15449;
	font-weight: bold;
}
#valid.formItem
{
	color: #4CAF50;
	font-weight: bold;
}
.formItem
{
	display: flex;
	flex-direction: row;
	align-items: baseline;
}

label.loginForm
{
	display: block;
	min-width: 80px;
}


label.loginForm1
{
	display: block;
	min-width: 140px;
}

label.loginForm2
{
	display: block;
	min-width: 150px;
}

#holL.loginForm
{
	display: block;
	text-align:left;
}

.formItemC
{
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: center;
}
.loginFormC
{

	width:fit-content;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;

}

input.loginForm
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

textarea.loginForm
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.loginButton
{
	flex-grow: 1;
	color: white;
	font-weight: bold;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
}
#login.loginButton
{
	background-color: #4CAF50;
}
#delete.loginButton
{
	background-color: #E15449;
}
button.loginButton:hover
{
	opacity: 0.8;	
}

#cancel.loginButton
{
	background-color: #005eb8;
}

.break
{
	flex-basis: 100%;
	height: 0;
}

select.loginForm
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}


legend
{
	text-align: center;
	font-weight: bold;
}
fieldset
{
	background-color: #f4f5f7;
}


#bgColour, #textColour
{
	appearance: auto;
	inline-size: 50px;
	block-size: 30px;
	box-sizing: border-box;
	background-color: #e8e8e8;
	padding: 1px 2px;
}

/*********************** Course Details *************************************/
button.nav
{
	font-weight: bold;
	border-color: #FFFFFF;
	padding: 10px;
	width: 100px;
	background-color: #005eb8;
	color: #FFFFFF;
	cursor: pointer;
}

button.nav:hover
{
	border-color: #005eb8;
	padding: 10px;
	width: 100px;
	background-color: #FFFFFF;
	color: #005eb8;
}


.courseDetails
{
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: auto;
}

select#course
{
	width: 100%;
	padding: 12px 20px;
	margin: 8px;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;

}

.courseDetails label
{
	display: flex;
	flex-direction: row;
	align-items: center;
	min-width:fit-content;
}
.cdDetails
{
	width: 60%;
	padding: 12px;
	border: 1px solid #ccc;
}

.cdLabel
{
	width:25%;
	text-align: right;
	padding: 12px;
}
/*********************** Unavailability Table *************************************/

table, th, td
{
	border-bottom: 1px solid black;
	padding: 5px;
	text-align: center;
}

table
{
	border-collapse: collapse;
}


/*********************** Availability *************************************/
.availability
{
	display: flex;
	font-size: 1em;
	align-items: center;
	justify-content: center;
	border: solid black;
	border-width: 1px 1px 0px 1px;
	flex: 1 1 auto;
	cursor: pointer;
}
.availability-parent
{
	display: flex;
	font-size: 1em;
	align-items: stretch;
	justify-content: center;
	border: solid black;
	border-width: 1px 1px 0px 1px;
	flex: 1 1 auto;
	cursor: pointer;
}

.availability-child1
{
	flex: 1;
	display: flex;
	font-size: 1em;
	align-items: center;
	justify-content: center;
	border: solid black;
	border-width: 0px 1px 0px 0px;
	cursor: pointer;

}
.availability-child2
{
	flex: 1;
	display: flex;
	font-size: 1em;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}


/*********************** Notices *************************************/

.notices
{
	grid-column: span 6;
	border: 2px solid white;
	text-align: center;
	background-color: #005eb8;
	color: #ffffff;
}
.notices h1
{
	font-size: 1em;
	font-weight: bolder;
	margin: 5px;
	text-decoration: underline;
}

.notices p
{
	font-weight:normal;
	margin: 5px;
}

.delNotice
{
	color: #ffffff;
	background-color: #ff0000;
	font-weight:bold;
	border-radius: 50%;
	border: 0px;
}


/*********************** Rooms Table *************************************/

table.rooms, th, td
{
	border: 1px solid Black;
	padding: 5px;
	text-align: center;
}

table
{
	border-collapse: collapse;
}

input.order
{
	width:15px;
	text-align:center;
}

/*****************************Report Table ***************************************/

.reportTable
{
	display: table;
}

.reportHeader
{
	display: table-header-group;
	font-weight: bold;
	padding: 2px;
}

.reportRow
{
	display: table-row;
	border: 2px solid black;
}

.reportCellTask
{
	display: table-cell;
	border: 1px solid black;
	padding: 5px;
}


.reportCell
{
	display: table-cell;
	border: 1px solid black;
	padding: 5px;
}

.reportCellEpic
{
	display: table-cell;
	border: 1px solid black;
	font-weight: bold;
	padding: 2px;
	border-radius: 3px;
	margin: 5px;
	text-align: center;
}