
.darkMode{
	background-color: black;
	color:white;
}
.greyMode{
	background-color: rgb(213, 211, 211);
	color:rgb(38, 38, 38);
}
.whiteBg{
	background-color: #ffffff;
}
.glow{
	transition: 700ms;
}
.glow:hover{
	transition: 700ms;
	box-shadow: 5px 5px 50px 1px rgb(255, 17, 0);
}
.floatText{
	position:fixed;
	width:100%;
	height:80px;
	bottom:00px;
	color: #FFF;
	background-color: rgb(6, 166, 202);
	font-size: 18px;
	text-align:center;
}

.float{
	position:fixed;
	width:100px;
	height:60px;
	bottom:40px;
	right:60px;
	background-color:rgb(219, 20, 6);
	color:#FFF;
	border-radius:25px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	transition: 1000ms;
}
.float:hover{
    transition: 500ms;;
    background-color: rgb(233, 132, 132);
}
#success-alert {
	z-index: 20;
	  position: fixed;
	  width: 50%;
	right:10px;
	top:10px;
  }
.my-float{
	margin-top:22px;
}
.myfloatText{
	margin-top:22px;
}
.dotred {
	height: 20px;
	width: 20px;
	background-color: rgb(250, 3, 3);
	background: radial-gradient(circle at 0px 2px, #fcafaf, rgb(255, 0, 0));
	border-radius: 50%;
	display: inline-block;
  }
.dotgrn {
	height: 20px;
	width: 20px;
	background-color: rgb(5, 141, 66);
	background: radial-gradient(circle at 0px 2px, #a9ffb0, rgb(2, 119, 41));
	border-radius: 50%;
	display: inline-block;
  }
.inline-icon {
	display: inline-flex;
    vertical-align: top;
 }

#menuToggle
{
  display: block;
  position: relative;
  top:10px;
  left: 10px;
  color: #000000;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #e9e9e9;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ffffff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #000000;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

/*
** 2 nd navbar
*/


.sidebar {
  height: 100%;
  width: 50px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #00d5ff;
  transition: 0.5s;
  overflow-x: hidden;
  padding-top: 10px;
  white-space: nowrap;
}

.sidebar a {
  padding: 8px 8px 8px 12px;
  text-decoration: none;
  font-size: 25px;
  color: #000000;
  display: block;
}

.sidebar a:hover {
  color: #f1f1f1;
}

main .sidebar {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.material-icons,
.icon-text {
  vertical-align: middle;
}

.material-icons {
  padding-bottom: 3px;
  margin-right: 30px;
}

#main {
  padding: 16px;
  margin-left: 85px;
  transition: margin-left 0.5s ease in;
}

@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 25px;
  }
  .sidebar a {
    font-size: 18px;
  }
}




/* Media queries for responsiveness */
@media (max-width: 768px) {
    .whiteBg {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .btn-info {
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .whiteBg {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    .btn-info {
        padding: 6px 12px;
    }
}


/* Styles for the main container */
/*#runReport .container {
    width: 100%;
    margin: 30px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}*/

/* Styles for the form inside the container */
/*#runReport .form-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}*/

/* Media queries for responsiveness */
/*@media (max-width: 768px) {
    #runReport .container {
        padding: 10px;
    }

    #runReport .form-inline {
        flex-direction: row;
        align-items: flex-start;
        overflow-x: auto; /* Hide horizontal overflow on smaller screens */
    }
}

@media (max-width: 576px) {
    #runReport .container {
        margin: 10px auto;
    }
}*/

