
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;

}
.bodyContainer {
  height: calc(100vh - 140px);
}
.navbar {
  background-color: #002b56;
  padding: 1rem;
  top: 0;
  position: fixed;
  width: 100%;
 }
.navbar-brand img {
  height: 50px;
  margin-right: 10px;
}
.navbar-brand span {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  vertical-align: middle;
}
.login-card {
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 2rem;
}
.form-control::placeholder {
  color: #999;
}
.btn-login {
  pointer-events: none;
  opacity: 0.5;
}
.footer {
  background-color: #002b56;
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
  bottom:0;
  position: fixed;
  width: 100%;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  color: #ccc;
}
a:active {
  color: #999 !important;
}
a:hover {
  text-decoration: underline !important;
}


/* FOR Modal Backdrop */
#confirmBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

/* Modal container */
#confirmModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font-family: Arial, sans-serif;
  z-index: 1000;
}

/* Header */
.modal-header {
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.modal-header h2 {
  margin: 0;
  font-size: 18px;
}

/* Content */
.modal-content {
  padding: 16px;
  font-size: 14px;
}

/* Actions */
.modal-actions {
  padding: 12px 16px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* Buttons */
.modal-actions button {
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.btn-warn {
  background: #d32f2f;
  color: #fff;
}

.btn-primary {
  background: #1976d2;
  color: #fff;
}

