@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
  font-family: "Space Grotesk", sans-serif !important;
}

body {
  background-color: var(--bs-dark);
}

.btn-smooth {
  transition: all 0.2s ease;
}

.btn-smooth.is-disabled {
  opacity: 0.5;
  transform: scale(0.98);
  pointer-events: none;
}

.dropdown-menu {
  border-radius: 0;
}

.form-check-input {
  filter: hue-rotate(-25deg)
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
  background-color: rgba(13, 202, 240, 0.18);
  color: #0dcaf0;
}

.navbar-toggler {
  border-radius: 2px;
  border-width: 2px;
}

.navbar-toggler-icon {
  background-image: none;
  font-size: 26px;
  margin-bottom: -5px;
  margin-left: -10px;
  margin-right: -10px;
}

.image-ratio-fixed {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.header {
  background-image: url("/assets/img/header.jpg");
  background-position-x: center;
  background-attachment: fixed;
}

.home-quick-search {
  background: linear-gradient(120deg, rgba(13, 202, 240, 0.05), rgba(255, 255, 255, 0.02));
}

.about-surface,
.not-found-surface {
  background:
    radial-gradient(circle at top right, rgba(13, 202, 240, 0.15), transparent 45%),
    radial-gradient(circle at bottom left, rgba(255, 193, 7, 0.1), transparent 40%),
    rgba(20, 20, 24, 0.9);
}

svg {
  display: inline-block;
  vertical-align: middle;
}

.icon-text-center {
  display: inline-flex;
  align-items: center;
}

.icon-text-center .lucide {
  flex-shrink: 0;
}

.home-hero-icon {
  position: relative;
  top: 2px;
}

.dashboard-shell {
  height: auto;
  overflow: visible;
}

.dashboard-sidebar,
.dashboard-content {
  overflow: visible;
}

@media (min-width: 992px) {
  .dashboard-shell {
    height: calc(100dvh - 4.5rem);
    overflow: hidden;
  }

  .dashboard-sidebar,
  .dashboard-content {
    overflow: auto;
  }

  .dashboard-content {
    min-height: 0;
  }
}