body {
  padding-bottom: 6rem;
}

mark {
  background-color: transparent;
  color: yellow;
}

img {
    max-width: 40px;
    max-height: 50px;
}

table {
  border: 2px;
}


.history {
  display:inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-phone {
  display:inline-block;
  white-space: nowrap;
  inline-size: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lucide {
  color:white;
  width: 25px;
  height: 25px;
}

.code-img {
  max-height: 100%;
  max-width: 100%;
  filter: drop-shadow(2px 2px 2em rgba(0, 0, 0, 0.164))
}

/*------------------------------------------------------------
------------ Switch toggle CSS  ------------------------------
------------------------------------------------------------*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  /*------------------------------------------------------------
------------  ADD THE SNACKBAR  ------------------------------
------------------------------------------------------------*/

/* The snackbarCopy - position it at the bottom and in the middle of the screen */
#snackbarCopy {
  visibility: hidden; 
  min-width: 250px; 
  margin-left: -125px; 
  background-color: #333; 
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed; 
  z-index: 1; 
  left: 50%; 
  bottom: 120px;
}

#snackbarCopy.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* The snackbarCopy - position it at the bottom and in the middle of the screen */
#snackbarVowels {
  visibility: hidden; 
  min-width: 250px; 
  margin-left: -125px; 
  background-color: #790505; 
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed; 
  z-index: 1; 
  left: 50%; 
  bottom: 120px;
}

#snackbarVowels.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 120px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 120px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 120px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 120px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}