:root {
  --blue: #0091FF;
  --dark-gray: #eeeeee;
  }

body {
    background-color: var(--dark-gray) !important;
    overflow: hidden;
}

.vid {
  width: 400px;
  height: 400px;
  max-width: 400px;
  max-height: 400px;
}


.contact_container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#contact_list {
}

.empty_flex {
  align-self: stretch;
  height: 100%;
}

.contact_buttons {
  align-self: flex-end;
  padding: 20px;
}

.person {
  padding: 10px;
  color: var(--blue);
  border-bottom: 5px solid var(--dark-gray);
  background: white ;
  text-align: center;
}

.person.selected {
  position: relative;
  background: var(--blue);
  color: white;
}

.person-name {
  font-size: 1.5em;
  font-weight: bold;
}

.person.selected::after {
  content:"";
    position:absolute;
    height:0;
    width:0;
    left:100%;
    top:0;
    border:40px solid transparent;
    border-left: 20px solid var(--blue);
}


.message-bubble { 
  background: white;
  border-radius: 5px;
  padding: 10px;
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.5em;
}

.s1 {
  width: 90%;
}

.s2 {
  width: 10%;
}

.message-content {
  background: var(--dark-gray);
  height: 100vh;
}

.message-sender {
  background-color: var(--blue);
  border-radius: 10px;
  font-size: 1.5em;
  color: white;
}

.message-ui {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}

#message_container {
  overflow: auto;
}

.message-table {
  border: 10px;
  width: 90%;
  padding: 10px;
  margin: 10px;
  margin-left: 20px;
  border-spacing: 15px !important;
  border-collapse: separate
}

.message-table-row {
  width: 100%;
}

.message-input-line {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 20px;
  align-self: stretch;
}

.small-space {
  width: 20px;
}

.full-it {
  max-height: 100vh;
  height: 100%;
  width: 100%;
  max-width: 100vw;
}

#printDiv {
  display: none;
}

@media print {

    #printDiv  {
        display: block !important;
   }

   .new-page {page-break-after: always;}

    .container-fluid  { display:none; }
}


