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;
  background-color: #f8f8f4;
}

.brand-banner {
  height: 220px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f8f8f4;
  background-image:
    linear-gradient(135deg, rgba(7, 70, 61, 0.14), rgba(186, 168, 122, 0.16)),
    url("/images/icon_left.jpeg"),
    url("/images/icon_right.jpeg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center center, left 24px center, right 24px center;
  background-size: cover, 380px auto, 280px auto;
}

.hr-app {
  text-align: right;
}

.hr-app .card-title,
.hr-app h4 {
  margin-bottom: 1rem;
}

.hr-app .employee-table-scroll {
  max-height: 420px;
  overflow-x: auto;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.hr-app .employee-table-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #f8f9fa;
}

.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;
}