body {
  height: 100%;
  padding-top: 60px;
  background-color: #f8f9fa;
  padding-bottom: 100px;
}

.dashboard-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.dashboard-card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}
.utility-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  color: #007bff;
}

.card-header {
  background-color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.card-min-height {
  min-height: 430px;
}

.reading-summary {
  background-color: #f1f3f5;
  padding: 1rem;
  border-radius: 0.375rem;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
}

.card {
  width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

label {
  text-align: left;
  margin-bottom: 5px;
}

.no-border .list-group-item {
  border: none;
}

.custom-footer {
  height: 60px;
}

#pre-load {
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#pre-load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #007bff ;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@media (max-width: 768px) {
  .navbar.fixed-bottom a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
  }
}

@-webkit-keyframes animate-preloader {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
    }
    @keyframes animate-preloader {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
}

.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 1s linear;
}

#pre-load.fadeOut {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s 1s, opacity 1s linear;
}
