table.history td {
  font-family: "Inter", sans-serif;
  margin: 12px 12px 12px 12px;
  padding: 1px 5px 1px 12px;
}
table.main td {
  font-family: "Noto Sans Arabic", sans-serif;
  margin: 12px 12px 12px 12px;
  padding: 1px 5px 1px 12px;
  }
  p, label {
  font-family: "Noto Sans Arabic", sans-serif;
}
img.copy {
  height: 15px;
  width: 15px;
}
.footer { 
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: small;
  position: absolute;
  bottom: 0; 
  text-align: center;
  display: flex;
  margin: 0 auto;
  display: inline-block;
}
.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container {
  padding: 2px 16px;
}
.animate { animation: disappear 1.5s linear; }

.copyAlert { opacity: 0; }

@keyframes disappear {
  30%  { opacity: 0; }
  60%  { opacity: 1; }
  100% { opacity: 0; }
}