/* formatting for the Javascript version of the display */

/* general button formatting - stolen from the web! */
button {
  align-items: center;
/*  background-color: #0A66C2;   */
  background-color: #729fcf;
/*  background-color: #4169E1;	*/
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 1.0em;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  margin-left: 10px;
  max-width: 480px;
  min-height: 30px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

button:hover,
.button:focus { 
  background-color: #16437E;
  color: #ffffff;
}

button:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

button:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}




/* CSS for customizable Alert box */
#modalContainer {
    background-color:rgba(0, 0, 0, 0.3);
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:10000;
    background-image:url(tp.png); /* required by MSIE to prevent actions on lower z-index elements */
}

#alertBox {
/*     position:relative; */
    width:700px;
    min-height:100px;
/*     margin-top:50px; */
    border:1px solid #666;
    background-color:#fff;
    background-repeat:no-repeat;
    background-position:20px 30px;
}

#modalContainer > #alertBox {
    position:fixed;
}

#alertBox h1 {
    margin:0;
    font:bold 1.5em verdana,arial;
    background-color:#3073BB;
    color:#FFF;
    border-bottom:1px solid #000;
    padding:2px 0 2px 5px;
}

#alertBox p {
    font: 1.0em verdana,arial;
/*     height:50px; */
    padding-left:5px;
    margin-left:55px;
    padding-right: 5px;
    margin-right: 55px;
}
.OkAlertOkButton {
		margin-bottom: 15px;
}


#footer {
	bottom: 0%;
	position: fixed;
}



/* Technology Selection */
.techSelectDiv {
	margin: auto;
}
.technologySelectDescription {
	background-color: #ffffe0;
}

.technologySelectSpan {
	background-color: #ffffe0;
	padding: 5px;
  	margin: 10px;
/*	border: 2px solid black;  */
}




.aboutButton {
	float: right;
	margin-right: 30px;
}

.menubar {
	border-top-style: solid;
	border-bottom-style: solid
}

/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 1.0em;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 210px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block-inline;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;} 




/* Resume section */
#jsDisplayResume {
	width: 1000px;
	height: 1000px;
}


/* About section */
.aboutLITopLevel {
	list-style: none;
	margin-top: 10px;
	margin-left: 30px;
	text-indent: -40px;
}
.aboutMore {
	font-size: 0.8em;
}

.aboutLITopLevel::before {
	content:"\27A2  ";
}


/*Tech Demo section */
.jsTechDemoIndentDiv {
	padding-left: 80px;
}

/* make the current focus more visible */
.jsEnhancedFocus:focus {
	outline: 3px solid green;
}


/* Comments page */
#addCommentDiv {
	border: solid darkGray;
}

#jsCommentRemainingChars {
	font-size: small;
	color: gray;
}



/* STAR Rating Formatting - stolen from the web! */
     .rating {
      unicode-bidi: bidi-override;
      direction: rtl;
      text-align: center;
    }
    .rating > span:hover:before,
    .rating > span:hover ~ span:before {
       content: "\2605";
       position: absolute;
       left: 0;
       color: gold;
    }
    .rating > span {
      display: inline-block;
      position: relative;
      width: 1.1em;
    }
    .rating > span:hover,
    .rating > span:hover ~ span {
      color: transparent;
    }
 
     .star-cb-group {
      /* remove inline-block whitespace */
      font-size: 0;
      /* flip the order so we can use the + and ~ combinators */
      unicode-bidi: bidi-override;
      direction: rtl;
      /* the hidden clearer */
    }
    .star-cb-group * {
      font-size: 2rem;
    }
    .star-cb-group > input {
      display: none;
    }
    .star-cb-group > input + label {
      /* only enough room for the star */
      display: inline-block;
      overflow: hidden;
      text-indent: 9999px;
      width: 1em;
      white-space: nowrap;
      cursor: pointer;
    }
    .star-cb-group > input + label:before {
      display: inline-block;
      text-indent: -9999px;
      content: "☆";
      color: #888;
    }
    .star-cb-group > input:checked ~ label:before, .star-cb-group > input + label:hover ~ label:before, .star-cb-group > input + label:hover:before {
      content: "★";
		color: gold;
      text-shadow: 0 0 1px #333;
    }
    .star-cb-group > .star-cb-clear + label {
      text-indent: -9999px;
      width: .5em;
      margin-left: -.5em;
    }
    .star-cb-group > .star-cb-clear + label:before {
      width: .5em;
    }
    .star-cb-group:hover > input + label:before {
      content: "☆";
      color: #888;
      text-shadow: none;
    }
    .star-cb-group:hover > input + label:hover ~ label:before, .star-cb-group:hover > input + label:hover:before {
      content: "★";
		color: gold;
      text-shadow: 0 0 1px #333;
    }



/*  READ Comment section */
#jsReadCommentMessageDiv {
	height: 26px;
	width: 800px;
	background-color: white;
	text-align: center;
	color: blue;
}
#jsCommentSummaryChartDiv {
	height: 400px;
	width: 600px;
}

#jsCommentTable {
	border: solid black;
	width: 700px;
}

#jsCommentHeaderRow {
	background-color: black;
	color: white;
}

.jsCommentTableFirstCell {
	padding-top: 10px;
	width: 250px;
}

.jsCommentTableCommentCell {
	width: 450px;
	word-wrap: break-word;
	white-space: normal;
	display: block-inline;
}



 