* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(90deg, #fce3ec, #e3f6fc, #e0fbe3);
  min-height: 100vh;
}

.cl-internal-bkuiv1 {
  background-color: transparent !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid #eee;
  background-color: #f7f9fc;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-section {
  display: flex;
  align-items: center;
}

.nav-left {
  flex: 1;
}

.nav-center {
  flex: 2;
  justify-content: center;
  gap: 24px;
}

.nav-right {
  flex: 1;
  justify-content: flex-end;
  gap: 16px;
}

.notification-wrapper {
  position: relative;
  cursor: pointer;
}

.notification-icon {
  font-size: 22px;
  color: var(--text-primary);
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f7f9fc;
  transform: scale(0);
  transition: transform 0.2s ease-out;
}

.notification-badge.visible {
  transform: scale(1);
}

.notification-dropdown {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 380px;
  border-radius: 12px;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.notif-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.notif-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.notif-body {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 12px;
  transition: background-color 0.2s ease;
}

.notification-item:hover {
  background-color: var(--background-hover);
}

.notification-item .notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
}

.notification-item .notif-content {
  flex-grow: 1;
}

.notification-item .notif-text {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

.notification-item .notif-text strong {
  font-weight: 600;
}

.notification-item .notif-time {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.notification-item.unread .notif-text {
  font-weight: 500;
}

.unread-dot {
  width: 8px;
  height: 8px;
  background-color: var(--unread-dot-color);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
}

.no-notifications {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.logo a {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.nav-center a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-center a:hover,
.nav-center .active {
  color: #0073e6;
}

.nav-auth {
  font-size: 14px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  color: #111;
  transition: 0.2s ease;
}

.nav-auth:hover {
  background-color: #edf2f7;
}

.nav-auth.outlined {
  border: 1px solid #111;
  padding: 7px 15px;
  background: transparent;
}

.nav-auth.outlined:hover {
  background-color: #e6f0ff;
  border-color: #0073e6;
  color: #0073e6;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
}
.hamburger .hamburger-box {
  width: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #111;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.25s ease, top 0.2s ease, opacity 0.2s ease;
}
.hamburger .hamburger-inner {
  top: 8px;
}
.hamburger .hamburger-inner::before {
  content: "";
  top: -8px;
}
.hamburger .hamburger-inner::after {
  content: "";
  top: 8px;
}
.hamburger.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
}
.hamburger.is-active .hamburger-inner::after {
  opacity: 0;
  top: 0;
}

.hero {
  background: linear-gradient(90deg, #fce3ec, #e3f6fc, #e0fbe3);
  padding: 80px 24px;
  text-align: center;
}

.hero-subheading {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-heading span {
  color: #0073e6;
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}

.quick-report {
  background-color: #fcfcfc;
  margin: 40px auto;
  padding: 40px 24px;
  max-width: 600px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.qr-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.qr-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.qr-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.qr-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 160px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  cursor: pointer;
  text-align: center;
}

.qr-button .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.qr-button.lost {
  background-color: #fff5f5;
  border-color: #ff4d4f;
  color: #b30000;
}

.qr-button.lost:hover {
  background-color: #ffeaea;
  box-shadow: 0 6px 16px rgba(255, 77, 79, 0.2);
}

.qr-button.found {
  background-color: #f0fff5;
  border-color: #52c41a;
  color: #0f801f;
}

.qr-button.found:hover {
  background-color: #e6ffee;
  box-shadow: 0 6px 16px rgba(82, 196, 26, 0.2);
}

.site-footer {
  background: #f7f9fc;
  padding: 40px 24px 20px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #e0e0e0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
}

.footer-brand p {
  max-width: 280px;
  line-height: 1.5;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #007bff;
}

.footer-social a {
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 13px;
  color: #777;
}

.footer-bottom p {
  margin-top: 1%;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 0;
  }
  .hamburger {
    display: block;
    order: 3;
  }
  .nav-left {
    order: 1;
    flex: none;
  }
  .nav-right {
    order: 2;
    gap: 12px;
  }
  .nav-center {
    order: 4;
  }

  .nav-center {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(6, 24, 32, 0.12);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.18s ease;
    z-index: 999;
  }
  .nav-center.open {
    max-height: 420px;
    padding: 8px;
  }
  .nav-center a {
    display: block;
    padding: 12px 10px;
    border-radius: 8px;
    color: #111;
    font-size: 15px;
    text-decoration: none;
    background: transparent;
    transition: background-color 0.12s ease, color 0.12s ease;
  }
  .nav-center a + a {
    margin-top: 6px;
  }
  .nav-center a:hover {
    background: #f4f7fb;
    color: #0073e6;
  }
  .nav-center.open {
    max-height: 400px;
    padding-bottom: 12px;
  }
  .logo a {
    font-size: 18px;
  }
  .nav-auth,
  .nav-auth.outlined {
    font-size: 13px;
    padding: 7px 10px;
  }
  .notification-dropdown {
    width: 95vw;
    left: 50%;
    top: 40px;
    min-width: 0;
    border-radius: 10px;
  }
  .hero {
    padding: 40px 16px;
  }
  .hero-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .quick-report {
    padding: 24px 16px;
    margin: 24px auto;
    max-width: 98vw;
    border-radius: 10px;
  }
  .qr-title {
    font-size: 18px;
  }
  .qr-subtitle {
    margin-bottom: 20px;
  }
  .qr-actions {
    flex-direction: column;
    gap: 16px;
  }
  .qr-button {
    min-width: 0;
    width: 100%;
    padding: 18px;
    font-size: 14px;
    border-radius: 10px;
  }
  .qr-button .icon {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .site-footer {
    padding: 24px 16px 10px;
    font-size: 13px;
    margin-top: 30px;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-brand h3 {
    font-size: 18px;
  }
  /* .footer-links,
  .footer-social {
    gap: 6px;
  } */
  .footer-bottom {
    font-size: 12px;
    padding-top: 3%;
  }
}
