html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Dashboard styles */
.card {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
  padding: 0.75rem 1.25rem;
}

.card-header h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.badge {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

.dropdown-menu {
  border-radius: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-weight: 600;
}

.display-4 {
  font-weight: 400;
  margin-bottom: 1rem;
}