/* Compiled from SCSS */
body {
  font-family: "math", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f4f8fb;
  font-size: 1.4rem;
}

header,
footer {
  width: 100%;
  background: #e3edf3;
  color: #6690c9;
  text-align: center;
}

header {
  border-bottom: 1px solid #3e649a;
}

.nav-bar {
  color: #6690c9;
}

footer {
  border-top: 1px solid #3e649a;
}

main .btn {
  background-color: #6690c9;
  color: #fff;
  border: 1px solid #3e649a;
}

.btn-info {
  background-color: transparent;
  color: #3e649a;
  border: none;
}

.btn-dashboard {
  background-color: transparent;
  color: #3e649a;
  border: 1px solid #3e649a;
}

.btn-logout {
  background-color: #6690c9;
  color: #fff;
  border: 1px solid #3e649a;
  border-radius: 0.5rem;
  font-size: 1.2rem;
}

main .thead-dashbord th {
  background-color: #6690c9;
  color: #fff;
  border: 1px solid #fff;
}

main td {
  border-left: 1px solid #3e649a;
  border-right: 1px solid #3e649a;
}

.empty-state {
  padding: 3rem;
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 1rem;
}

.client-card {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  border-color: #6690c9;
}

/* Animations for Real-time Updates */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

main .login-card {
  width: 100%;
  max-width: 520px;
}

main .login-card h2 {
  color: #3e649a;
}

main .login-card .form-label {
  color: #1a3c6e;
}

main .login-card .form-control:focus {
  border-color: #6690c9;
  box-shadow: 0 0 0 0.25rem rgba(102, 144, 201, 0.25);
}
