.bg-customcolor {
  background-color: #0d2437;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 3.75rem;
  box-shadow: 0 1px 0 rgba(191, 221, 248, 0.18);
}

.site-logo img {
  transition: transform 180ms ease;
}

.site-logo:hover img {
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav-link,
.site-dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #bfddf8;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  outline: none;
  padding: 0.35rem 0;
  transition:
    color 160ms ease,
    box-shadow 160ms ease;
}

.site-nav-link:hover,
.site-dropdown-button:hover,
.site-nav-link:focus-visible,
.site-dropdown-button:focus-visible,
.site-nav-link.is-active,
.site-dropdown-button.is-active {
  color: #ffffff;
  box-shadow: inset 0 -2px 0 #47a2e9;
}

.site-menu-toggle {
  color: #bfddf8;
  display: none;
  font-size: 1.15rem;
  margin-left: auto;
  padding: 0.5rem;
}

.site-dropdown {
  position: relative;
}

.site-dropdown-panel {
  background: #ffffff;
  border: 1px solid rgba(13, 36, 55, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(13, 36, 55, 0.18);
  display: none;
  min-width: 14rem;
  padding: 0.4rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  z-index: 80;
}

.site-dropdown-panel.is-open {
  display: block;
}

.site-dropdown-item {
  border-radius: 6px;
  color: #143e66;
  display: block;
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
}

.site-dropdown-item:hover,
.site-dropdown-item:focus-visible,
.site-dropdown-item.is-active {
  background: #eef7ff;
  color: #0d2744;
  outline: none;
}

.custom-list li::marker {
  color: #47a2e9;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #dbeafe;
}

.site-footer a {
  color: #1374c9;
}

.application-card {
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(13, 36, 55, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.application-card:hover {
  border-color: #47a2e9;
  box-shadow: 0 20px 48px rgba(13, 36, 55, 0.14);
  transform: translateY(-2px);
}

.application-icon {
  align-items: center;
  background: #e7f4ff;
  border-radius: 8px;
  color: #1374c9;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.blog-empty-state {
  background: #f8fbff;
  border: 1px dashed #bfddf8;
  border-radius: 8px;
  color: #143e66;
  padding: 1rem;
}

@media (max-width: 767px) {
  .site-header {
    min-height: 4rem;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background: #0d2437;
    border: 1px solid rgba(191, 221, 248, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(13, 36, 55, 0.22);
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    left: 1rem;
    padding: 0.8rem;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-link,
  .site-dropdown-button {
    justify-content: space-between;
    padding: 0.65rem 0.5rem;
    width: 100%;
  }

  .site-dropdown-panel {
    border: 0;
    box-shadow: none;
    margin-top: 0.2rem;
    min-width: 100%;
    position: static;
  }
}
