html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
}

.content {
  margin-top: 70px;
}

.footer {
  flex-shrink: 0;
  width: 100%;
  height: 60px; /* Adjust the height as needed */
  background-color: #e4e4e4;
  margin-top: 40px;
}

.btn-info {
    color: #fff;
    background-color: #00AEEF;
    border-color: #00AEEF;
}

.message-container {
    z-index: 9999999999;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
  }
  
  @media (min-width: 768px) {
    .message-container {
      width: 50vw;
      max-width: 300px;
    }
  }

.toast {
    background: #fff;
    z-index: 9999999999;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Loading screen */

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,174,239, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loading-content {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}
