﻿body 
{

	/*background-color: #E5E4E2;*/ /* platinum */
	/*background-color: #B9D9EB;*/ /* columbia blue */
	background-color: #0B0902; /* very dark blue */
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: bold;
	font-size: xx-large;
	font-style: normal;
	text-align: left;
	text-decoration: none;
}

div {
	margin-top: 10px;
}

.title
{
	font-size: x-large;
	color: white;
	font-weight: bold;
	text-align: center;
	width: 100%;
}

label {
	font-size: 22px;
	color: #36454F;
}

table {
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-spacing: 0px;
	border-radius: 8px;
}


.tableNavigation {
	background-color: rgba(255, 255, 255, 0.3); 
}

th {
	color: ghostwhite;
	font-size: 20px;
	background: #384959; /* medium dark cyan blue */
	height: 32px;
	text-align: center;
}
	th:first-child {
		border-top-left-radius: 8px; /* rounding the corner*/
	}
	th:last-child {
		border-top-right-radius: 8px; /* rounding the corner*/
	}

td {
	font-size: 20px;
	overflow: hidden;
	font-weight: 700;
	overflow-wrap: break-word;
	word-break: break-word;
	height: auto;
	white-space: normal;
	text-overflow: clip;
}


/*cell2.style.maxWidth = "30%"; // Maximum width
cell2.style.overflowWrap = "break-word"; // Break long words into the next line
cell2.style.wordBreak = "break-word"; // Ensures words break properly (cross-browser support)
cell2.style.whiteSpace = "normal"; // Allows text to wrap instead of staying in one line
cell2.style.height = "auto"; // Automatically increases height
cell2.style.textOverflow = "clip"; // No ellipsis, shows full text*/

.dashboard {
	width: 82%;
	margin-top: 20px;
	margin-left: 10%;
	background-color: ghostwhite;
}

	.dashboard label {
		font-size: 32px;
		height: auto;
		text-align: center;
		font-weight: 700;
		color: #36454F; /* charcoal */
	}

	.dashboard td {
		font-size: 20px;
		text-align: left;
		color: #36454F; /* charcoal */
		font-weight: 700;
		border-top: 0.1px dashed;
		text-align: center;
		border-color: #36454F; /* charcoal */
		overflow: hidden;
	}


	.dashboard title {
		font-size: 60px;
		height: auto;
		text-align: center;
		font-weight: 700;
	}


.tableLogin {
	line-height: normal;
	width: 36%;
	margin: auto;
	background-color: #DFEBF6;
	padding: 12px;
	border-radius: 8px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

	.tableLogin td {
		padding: 0px 10px 10px 10px; /* logging table padding */
		border-style: none !important;
	}

input {
	align-content: center;
	width: 95%;
	padding: 6px;
	border: 1px solid #ccc;
	margin: 0px 4px 0px 3px;
	border-radius: 4px;
	font-size: 18px;
	font-weight: 550;
	color: #36454F; /* charcoal */
}

.icon {
	align-content: center;
	padding: 5px;
	border: 2px solid #ccc;
	margin: 0px 0px 0px 1px;
	border-radius: 4px;
	background: white;
}

/* Dropdown Container */
.dropdown {
	position: relative;
	display: inline-block;
}

/* Button that triggers dropdown */
.dropbtn {
	background-color: #44576D;
	color: white;
	padding: 10px;
	width: 160px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: white;
	min-width: 160px;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

	/* Dropdown content links*/
	.dropdown-content a {
		color: black;
		padding: 10px 16px;
		text-decoration: none;
		display: block;
	}

		.dropdown-content a:hover {
			background-color: #ddd;
		}
/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
	display: block;
}
 
/*button {
	width: 100%;
	padding: 10px;
	background-color: #44576D;
	color: white;
	border: none;
	font-weight: 700;
	border-radius: 5px;
	cursor: pointer;
}
button:hover {
	background-color: #0056b3;
} */


button {
	position: relative; /* For positioning the pseudo-element*/
	width: 100%;
	background: linear-gradient(45deg, #44576D, #2b4462);
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	cursor: auto;
	transition: all 0.3s ease; /*Smooth transition */
	overflow: hidden; /*To contain the pseudo-element*/
}
  button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 50%);
	transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	opacity: 0;
  }
  
  button:hover::before {
	width: 100%;
	height: 100%;
	opacity: 1;
  }
  
  button:hover {
	transform: scale(1.05);
	box-shadow: 9px 9px 2px 1px rgba(0, 0, 255, .2);
  }
  
  button:disabled {
	background: #ccc;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
  }

	button.delete-button {
		background: #d3494e !important;
		padding: 10px;
		width: max-content;
	}

.buttonAdd {
	font-size: 16px;
	height: 32px;
	background: #40826D;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Bottom of button hover */

a {
	font-size: 18px;
	color: #44576D;
	font-weight: 500;
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}

.readOnly
{
	background-color: #F0F0F0;
	font-size: inherit;
	white-space: normal;
	border-style: inset;
	border-width: medium;
	border-color: Black;
}

p {
		text-align: center;
	color: #36454F; /* charcoal */
	font-size: 16px;
	font-weight: 600;
	margin: 0px;
}

.h1 {
	font-size:x-large;
}

.h2 {
	font-size: small;
	color: yellow;
}

h3 {
	font-size: 36px;
	text-align: center;
	color: #44576D;
	font-weight: 700;
	margin: auto;
	margin-right: 25%;
}

h4 {
	font-size: 32px;
	font-weight: 700;
	margin: auto;
}


.modal {
	display: none;
	position: fixed;
	justify-content: center;
	z-index: 1;
	top: -4%; /* to cover entire screen */
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-button {
	width: 150px;
	font-size: 14px;
	margin: 10px;
}

.modalTable {
	position: fixed;
	z-index: 1;
	top: 11%; /*	positioning just below page name*/
	min-width: 32%;
	overflow: auto;
	background: #DFEBF6;
	box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
	padding: 10px;
	font-weight: 700;
}

/* SELECTBOX STYLE: for logger type */
select {
	width: 266px;
	font-size: 20px;
	font-weight: 700;
	color: #36454F;
	border-radius: 8px;
	height: 33px;
	border-color: #36454F;
}


.collapsible-header th {
	cursor: pointer;
	padding: 6px;
}

.collapsible-header:hover th {
	background-color: floralwhite;
	color: #343434; /* jet black */
	font-size: 22px;
}
