/* Base styles for desktop */
body {
  font-size: 16px;
  background-color: #6487dc;
  color: White;
  padding-bottom: 50px; /* Adjust the value to match the height of the footer */
}

/* Styles for tablets */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

/* Styles for mobile devices */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
}

.navbar, .navbar-dark {
/*  background-image: url(/topnav-bg.gif); */
  background: #eae7d1;
}

.navbar-header {
  background: #6487dc;
}

.navbar-dark .navbar-brand, .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: Blue;
}

.navbar-dark .navbar-nav .nav-link {
  color: Black;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active {
  color: Blue;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  background-color: Blue;
  color: White;
}

.rtl {
  direction: rtl;
  text-align: right;
  background: White;
  color: Black;
}

.table {
  background: White;
}

footer {
  background-color: Black;
  color: White;
/*  position: absolute; */
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px; /* Specify height if you know it */
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
 color: Black;
}
