/* Google Font - IBM Plex Mono Medium */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');

body {
    font-family: 'IBM Plex Mono', 'Consolas', Verdana, sans-serif;
}

#resultsA {
    background-color: rgb(74, 194, 204);
    height: 3em
}

#resultsB {
    background-color: purple ;
    height: 3em
}

.message_holder_small {
    overflow-y: scroll;
    max-height: 175px
}

.message_holder {
  overflow-y: scroll;
  max-height: 100%
}

p.chat_msg {
    margin: 0px;
    color: inherit;
}

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

/* MODAL */
/* copied from https://www.w3schools.com/howto/howto_css_modals.asp */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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 */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #000000;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */;
  }
  
  /* The Close Button */
  .close {
    color: rgb(214, 214, 214);
    float: right;
    font-size: 4em;
    font-weight: bold;
    opacity: 0.6;
  }
  
  .close:hover,
  .close:focus {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
  }

  .modal p{
    display: inline; 
    vertical-align: bottom;
  }

  .modal img {
    padding: 0 !important
  }