:root {
  --gm-bottom-nav-height: 68px;
}

.gm-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  height: var(--gm-bottom-nav-height);
  background: #ffffff;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.gm-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #6c757d;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
}

.gm-bottom-nav a.active {
  color: #0d6efd;
}

.gm-bottom-nav i {
  font-size: 1.25rem;
  line-height: 1;
}

.gm-bottom-nav .publish {
  color: #ffffff;
}

.gm-bottom-nav .publish span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0d6efd;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.28);
}

@media (max-width: 768px) {
  body.gm-has-bottom-nav {
    padding-bottom: var(--gm-bottom-nav-height);
  }

  .gm-bottom-nav {
    display: flex;
  }
}
