/* general */

body {
    background-color: #212529;
    font-family: Verdana;
    color: #868e96;
    line-height: 1.8;
    padding: 8px;
    font-size: 16px;
}

  
a:link, a:visited {
    text-decoration: none;
}

a:active, a:hover {
      color: #748ffc;
          text-decoration: none;
  }

a {
    color: #868e96;
    text-decoration: none;
}

.left {
    text-align: left;
    font-size:12px;
}

.center {
    text-align: center;
    
    /*
    display: flex;
  align-items: center;
  justify-content: center;
  */
}

.active:active {
 	color: #748ffc;
  }
  
  
.small {
    line-height: 20%;
}

.orange {
    color: #f59f00;
}

input[type=text] {
    font-size: 16px;
	color: #ced4da;
    padding: 3px 5px;
    box-sizing: border-box;
    background-color: #212529;
     text-align: center;
	border: solid 1px black;
}


hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #748ffc;
    margin: 1em 0;
    padding: 0; 
}



.button {
    background-color: #212529;
    color: #ced4da;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
     border-radius: 5px;

	border: solid 1px black;
}

.button:hover {
      color: #748ffc;
          text-decoration: none;
  }


.orange {
      	color: #f59f00;
      }
      
   .blue {
   		color: #748ffc;
   }
   
     .margin {margin-bottom: 45px;}
  .bg-1 { 
      
      color: #868e96; /* Light gray */
  }


#main {
	border-radius: 10px;
	color: #ced4da;
    background-color: #343a40;
	padding-top: 5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
    margin: 25px;
      margin-left: auto ;
  margin-right: auto ;
    max-width: 20em;
	border: solid 1px black;
    
}

/* dropdown menu */

.dropbtn {
    background-color: #212529;
    color: #ced4da;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
	border: solid 1px black;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #212529;
    border-radius: 5px;
    border: 1px black solid;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #868e96;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {color: #748ffc}

.dropdown:hover .dropdown-content {
    display: block;
    
}

.dropdown:hover .dropbtn {
    background-color: #212529;
        border-radius: 5px;
color: #748ffc;
}

.list-group-item{
background-color: #212529;
	color: #ced4da;
    padding: 5px 15px; /* adjust here */
    margin-left: 25px;
    margin-right: 25px;
    border: black 1px solid;
}

a.list-group-item:hover {
    background-color: #212529;
}

p.list-group-item-text:hover {
    
      color: #748ffc;
}

.list-group-item-text{
	color: #868e96;
	font-size: 14px;
	
}