html, body {
  height: 100%;
}

body {
  background: #f6f7fb;
}

.app-navbar {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.app-card {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(22, 34, 51, 0.08);
}

.app-table thead th {
  font-weight: 600;
  color: #4b5563;
}

.app-table tbody td {
  vertical-align: middle;
}

.app-page-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.app-subtitle {
  color: #6b7280;
}

.app-navbar .nav-link {
  color: rgba(255, 255, 255, 0.86);
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
  color: rgba(255, 255, 255, 1);
}

.table-responsive {
  -webkit-overflow-scrolling: touch;
}

.app-img-preview-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.app-img-preview-modal .modal-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.app-img-preview-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.app-img-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-img-preview-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
  font-size: 40px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-img-preview-prev {
  left: 10px;
}

.app-img-preview-next {
  right: 10px;
}

@media (max-width: 575.98px) {
  .app-img-preview-modal .modal-dialog {
    margin: 0;
  }

  .app-img-preview-modal .modal-content {
    height: 100vh;
  }

  .app-img-preview-modal .modal-body {
    min-height: 100vh;
  }

  .app-img-preview-img {
    max-width: 100vw;
    max-height: 100vh;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .app-page-title {
    font-size: 1.25rem;
  }

  .table {
    font-size: 0.875rem;
  }
}

