* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #0f172a;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 120px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #0069B1;
}

a:hover {
  text-decoration: underline;
}

.text-navy {
  color: #333333 !important;
}

.text-dark {
  color: #333333 !important;
}

.text-blue {
  color: #0069B1 !important;
}

.text-orange {
  color: #FF7500 !important;
}

.text-gold {
  color: #FFB549 !important;
}

.text-muted {
  color: #7f8c8d !important;
}

.text-muted-light {
  color: #94a3b8 !important;
}

.text-light-gray {
  color: #94a3b8 !important;
}

.text-gray {
  color: #7f8c8d !important;
}

.text-teal {
  color: #333333 !important;
}

.text-coral {
  color: #FF7500 !important;
}

.theme-underline {
  text-decoration: underline;
  text-decoration-color: #FF7500;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.bg-navy-darker {
  background-color: #0A2349;
  color: white;
}

.bg-navy-primary {
  background-color: #002D72;
  color: white;
}

.bg-light {
  background-color: #EEF1F5;
  color: #333333;
}

.u-hidden {
  display: none !important;
}

.link-article {
  color: #38bdf8 !important;
  text-decoration: underline;
}
.link-article:hover {
  color: #0069B1 !important;
}

:root {
  --banner-h: 5.5rem;
  --nav-h: 2.5rem;
  --header-h: 3.25rem;
  --legend-h: 2.75rem;
  --footer-h: 3.5rem;
  --top-stack: calc(var(--banner-h) + var(--nav-h) + var(--header-h));
  --bottom-stack: calc(var(--legend-h) + var(--footer-h));
  --map-h: calc(100vh - var(--top-stack) - var(--bottom-stack));
}

body.app-body {
  background: white;
  min-height: 100vh;
  padding: 0;
}
@media (max-width: 767px) {
  body.app-body {
    overflow-x: hidden;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 0;
  padding: 0 15px;
  box-shadow: none;
}
@media (max-width: 767px) {
  .container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

body.app-body .container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section > .container,
header .container,
nav .container,
.navbar .container,
.footer .container {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 12px;
}
@media (min-width: 576px) {
  section > .container,
  header .container,
  nav .container,
  .navbar .container,
  .footer .container {
    padding: 0 15px;
  }
}

.hero-section {
  background: linear-gradient(180deg, rgb(16.1445783133, 56.5060240964, 117.8554216867) 0%, #0A2349 60%, #0A2349 100%);
  color: white;
}

#hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.subtitle {
  text-align: center;
  color: #0069B1;
  margin-bottom: 30px;
}

.page-bg {
  background: linear-gradient(135deg, #1A3D64 0%, rgb(6.9277108434, 24.2469879518, 50.5722891566) 100%);
  min-height: 100vh;
  padding: 1.5rem 1rem;
}
.page-bg > header,
.page-bg > main,
.page-bg > footer {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-bg > .footer {
  background: white;
  padding: 1rem;
  margin-top: 0;
}

.content-card {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content-card a {
  color: #0069B1;
}
.content-card a:hover {
  color: rgb(0, 74.7457627119, 126);
}

.highlight-box {
  background: #f8f9fa;
  border-radius: 8px;
}

.story-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
  border-radius: 12px;
}

.contact-card {
  background: #f8f9fa;
  border-radius: 8px;
}

.response-note {
  background: #e8f4fd;
  color: #0069B1;
}

.value-card {
  background: #f8f9fa;
  border-top: 3px solid #0069B1;
  border-radius: 8px;
}

.feature-list {
  background: #f8f9fa;
  border-radius: 8px;
}

.closing-box {
  background: #0A2349;
  color: white;
}

.back-link {
  color: #0069B1;
  font-weight: 700;
}
.back-link:hover {
  text-decoration: underline;
  color: #0A2349;
}

.back-link-container {
  text-align: center;
  margin-top: 2rem;
}

body.blog-page {
  margin: 0;
  padding: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: white;
  min-height: 100vh;
}
body.blog-page a {
  text-decoration: none;
  color: inherit;
}

.blog-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-header-logo {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.blog-content h1 {
  font-size: 2.2rem;
  color: #333333;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
  border-bottom: 3px solid #0069B1;
  padding-bottom: 0.75rem;
  text-align: left;
}
.blog-content h2 {
  font-size: 1.5rem;
  color: #333333;
  margin: 2rem 0 1rem 0;
}
.blog-content p {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 1rem;
}

.blog-intro {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ed 100%);
  border-radius: 8px;
}

.blog-tips {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.blog-tips h3 {
  font-size: 1.25rem;
  color: #333333;
  margin: 0 0 1rem 0;
}
.blog-tips ul {
  margin: 0;
  padding-left: 1.5rem;
}
.blog-tips li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.blog-conclusion {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e5e7eb;
}
.blog-conclusion p {
  font-size: 1.05rem;
}

.blog-signature {
  text-align: right;
  font-style: italic;
  color: #0069B1;
  font-weight: 600;
  margin-top: 1.5rem;
}

.back-app-link {
  display: block;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  color: #0A2349;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.back-app-link:hover {
  text-decoration: underline;
}

.blog-vertical-scroll {
  max-height: 320px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-vertical-scroll::-webkit-scrollbar {
  width: 6px;
}
.blog-vertical-scroll::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}
.blog-vertical-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.blog-vertical-scroll::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.blog-posts-scroll {
  padding-right: 5px;
}
.blog-posts-scroll::-webkit-scrollbar {
  width: 6px;
}
.blog-posts-scroll::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}
.blog-posts-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.blog-posts-scroll::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.blog-post {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 3px solid #0069B1;
  transition: box-shadow 0.2s ease;
}
.blog-post:last-child {
  margin-bottom: 0;
}
.blog-post:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.blog-post h3 {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 4px;
  display: inline;
}
@media (max-width: 767px) {
  .blog-post h3 {
    display: block;
    margin: 0 0 2px;
  }
}
.blog-post p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 8px 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
@media (max-width: 767px) {
  .blog-post p {
    margin: 4px 0 0;
    display: block;
  }
}

.blog-brief {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
@media (max-width: 767px) {
  .blog-brief {
    white-space: normal;
    overflow: visible;
  }
}

.blog-date {
  font-size: 11px;
  color: #7f8c8d;
  display: block;
}

.blog-link {
  color: #0069B1;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .blog-link {
    display: block;
    margin-top: 4px;
    text-align: right;
  }
}
.blog-link:hover {
  text-decoration: underline;
}

.navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.logo {
  width: 70px;
  height: auto;
}

.footer {
  border-top: 1px solid rgba(0, 105, 177, 0.2);
  margin: 0;
  padding: 0.5rem 0;
  position: sticky;
  bottom: 0;
  background: white;
  z-index: 1018;
}
@media (max-width: 767px) {
  .footer {
    display: none;
  }
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-content-app {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .footer-meta {
    position: absolute;
    left: 1rem;
  }
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
@media (max-width: 767px) {
  .footer-meta {
    display: none;
  }
}

.footer-version,
.footer-timestamp {
  font-size: 12px;
  color: #7f8c8d;
  text-align: left;
}

.footer-links-app {
  text-align: center;
  font-size: 12px;
  color: #1A3D64;
  flex: 1;
}
@media (max-width: 767px) {
  .footer-links-app {
    font-size: 10px;
    padding-right: 44px;
  }
}
.footer-links-app a {
  color: #1A3D64;
  text-decoration: none;
  font-weight: 500;
}
.footer-links-app a:hover {
  text-decoration: underline;
  color: #0069B1;
}

.footer-reddit-app {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-reddit-app {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.footer-reddit-app img {
  width: 28px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-reddit-app img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
@media (min-width: 768px) {
  .footer-reddit-app {
    position: absolute;
    right: 1rem;
  }
}

.footer-text {
  text-align: center;
  color: #1A3D64;
  flex: 1;
}

.footer-links a {
  color: #1A3D64;
  text-decoration: none;
  font-weight: 700;
}

.footer-reddit {
  position: absolute;
  right: 1rem;
  display: flex;
  align-items: center;
}
.footer-reddit img {
  width: 28px;
  height: auto;
  cursor: pointer;
}
.footer-reddit img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.page-footer {
  background: white;
  border-top: 1px solid rgba(0, 105, 177, 0.2);
}
.page-footer a {
  color: #0069B1;
}
.page-footer a:hover {
  color: rgb(0, 74.7457627119, 126);
}

.reddit-icon {
  width: 28px;
  height: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.reddit-icon:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .footer-reddit {
    position: static;
    margin-top: 1rem;
  }
  .footer-content {
    flex-direction: column;
  }
}
button {
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #FF7500;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 470px;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
button:hover {
  background: rgb(204, 93.6, 0);
}
button:active {
  transform: scale(0.98);
}

.btn, .nav-link, .accordion-button {
  min-height: 44px;
}

.btn-cta {
  background-color: #FF7500;
  border-color: #FF7500;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover {
  background-color: rgb(204, 93.6, 0);
  border-color: rgb(204, 93.6, 0);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 117, 0, 0.4);
  text-decoration: none;
  color: white;
}

.auth-btn-login {
  padding: 12px 24px;
  background: #FF7500;
  color: white;
  border: 2px solid #FF7500;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 280px;
  margin-bottom: 10px;
}
.auth-btn-login:hover {
  background: rgb(204, 93.6, 0);
  border-color: rgb(204, 93.6, 0);
}

.auth-btn-guest {
  padding: 12px 24px;
  background: transparent;
  color: #7f8c8d;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 280px;
}
.auth-btn-guest:hover {
  background: transparent;
  border-color: #7f8c8d;
  color: #333333;
}

.back-to-greeting-btn {
  width: 100%;
  max-width: 280px;
  padding: 14px 24px;
  margin: 12px auto 24px;
  background: transparent;
  color: #7f8c8d;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.back-to-greeting-btn:hover {
  background: transparent;
  border-color: #7f8c8d;
  color: #333333;
}

.setup-save-btn {
  padding: 14px 20px;
  min-width: auto;
  margin: 0;
  background: #0069B1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}
.setup-save-btn:hover {
  background: #0A2349;
}
@media (min-width: 768px) {
  .setup-save-btn {
    padding: 6px 12px;
    font-size: 14px;
    width: auto;
  }
}

.btn-back-to-list {
  background: none;
  border: 2px solid #0069B1;
  color: #0069B1;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 20px;
  transition: all 0.2s ease;
  width: auto;
  max-width: none;
}
.btn-back-to-list:hover {
  background: #0069B1;
  color: white;
}

.spot-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
  width: auto;
  max-width: none;
  margin: 0;
}
.spot-btn.view-btn {
  background: #0069B1;
  color: white;
}
.spot-btn.view-btn:hover {
  background: rgb(0, 74.7457627119, 126);
}
.spot-btn.remove-btn {
  background: none;
  color: #e74c3c;
  border: 1px solid #e74c3c;
}
.spot-btn.remove-btn:hover {
  background: #e74c3c;
  color: white;
}

select {
  padding: 8px 15px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: border 0.3s;
}
select:hover {
  border-color: #0069B1;
}
select:focus {
  outline: none;
  border-color: #0069B1;
}

#regionSelect {
  margin: 0;
  padding: 8px 15px;
  min-width: 200px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: #0069B1;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  padding-left: 5px;
}
.filter-checkbox-item input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #0069B1;
}

.comparison-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .comparison-table {
    border-radius: 0;
    box-shadow: none;
  }
}
.comparison-table {
  table-layout: fixed;
}
.comparison-table th {
  background: #0069B1;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 700;
}
.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}
.comparison-table .location-row {
  cursor: pointer;
  height: 135px;
}
@media (max-width: 767px) {
  .comparison-table .location-row {
    height: 105px;
  }
}
.comparison-table .location-row .location-header-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 26px;
}
@media (max-width: 767px) {
  .comparison-table .location-row .location-header-line {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .comparison-table .location-row .location-header-line {
    font-size: 18px;
  }
}
.comparison-table .location-row .location-name-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.comparison-table .location-row .location-tags-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.comparison-table .location-row .location-nav-btn {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}
.comparison-table .location-row .location-nav-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.comparison-table .location-row .location-nav-btn:hover {
  border-color: #0069B1;
}
.comparison-table .location-row .location-nav-btn:active {
  transform: scale(0.92);
}
.comparison-table .location-row td {
  padding: 20px 15px;
  height: 135px;
  vertical-align: top;
  position: relative;
}
@media (max-width: 767px) {
  .comparison-table .location-row td {
    height: 105px;
    padding: 14px 12px;
  }
}
.comparison-table .location-row td {
  color: white;
}
.comparison-table .location-row td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10, 35, 73, 0.95) 0%, rgba(10, 35, 73, 0.7) 45%, rgba(10, 35, 73, 0) 75%);
  pointer-events: none;
}
.comparison-table .location-row td > * {
  position: relative;
  z-index: 1;
}
.comparison-table .location-row td strong {
  color: white;
}
.comparison-table .location-row td small {
  display: block;
  white-space: normal;
  word-wrap: break-word;
  color: rgba(255, 255, 255, 0.9);
}
.comparison-table .location-row:hover td::before {
  background: linear-gradient(to right, rgba(10, 35, 73, 0.98) 0%, rgba(10, 35, 73, 0.75) 45%, rgba(10, 35, 73, 0) 75%);
}
.comparison-table .location-row .location-description {
  max-width: 50%;
}
.comparison-table .location-row .location-tags-container {
  max-width: 60%;
}
.comparison-table .location-row .fbi-tag {
  background: rgba(255, 255, 255, 0.65);
  color: #000;
  border: none;
}
.comparison-table .location-row .location-tag {
  background: #e8f4f8;
  color: #0069B1;
  border: none;
}
.comparison-table .location-row .location-tag.accommodation {
  background: #e8f5e9;
  color: #2e7d32;
}
.comparison-table .location-row .location-tag.fees {
  background: #fff3e0;
  color: #e65100;
}
.comparison-table .location-row .location-tag.hazard {
  background: #ffebee;
  color: #c62828;
}
.comparison-table .location-row .location-tag.noaa-alert {
  background: #ffebee;
  color: #c62828;
}
.comparison-table .location-row:not(.has-bg-image) td {
  background: #0A2349;
}
.comparison-table .location-row.has-bg-image td {
  background-size: cover;
  background-position: 75% 30%;
}
@media (min-width: 576px) {
  .comparison-table .location-row.has-bg-image td {
    background-position: 60% 30%;
  }
}
@media (min-width: 768px) {
  .comparison-table .location-row.has-bg-image td {
    background-position: center 30%;
  }
}
.comparison-table .location-row--myspot td {
  background: linear-gradient(135deg, #b8860b, #daa520, #f5c542) !important;
}
.comparison-table .location-row--myspot td::before {
  background: linear-gradient(to right, rgba(120, 80, 0, 0.85) 0%, rgba(120, 80, 0, 0.5) 45%, transparent 75%);
}
.comparison-table .location-row--myspot:hover td::before {
  background: linear-gradient(to right, rgba(120, 80, 0, 0.92) 0%, rgba(120, 80, 0, 0.6) 45%, transparent 75%);
}
.comparison-table .location-row--myspot-error td {
  background: linear-gradient(135deg, #8b7355, #a89070, #c4a97d) !important;
}
.comparison-table .location-row--myspot-error td .fbi-tag {
  background: rgba(255, 255, 255, 0.4);
}
.comparison-table .myspot-crown {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.comparison-table > thead > tr > th,
.comparison-table > tbody > tr.location-row > td {
  width: auto;
  max-width: none;
}

.myspot-metadata {
  background: rgba(218, 165, 32, 0.08);
  border: 1px solid rgba(218, 165, 32, 0.25);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}
.myspot-metadata__header {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
}
.myspot-metadata__row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}
.myspot-metadata__label {
  color: #666;
  font-weight: 500;
}
.myspot-metadata__value {
  color: #555;
}
.myspot-metadata__actions {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.myspot-delete-btn {
  background: #ffebee;
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.myspot-delete-btn:hover {
  background: rgb(255, 209.5, 216.325);
}

.myspot-error-content {
  padding: 24px;
  text-align: center;
}
.myspot-error-content__message {
  margin-bottom: 16px;
}
.myspot-error-content__message strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.myspot-error-content__message p {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

#mySpotsTable {
  border-collapse: separate;
  border-spacing: 0 0.5rem;
  background: transparent;
  box-shadow: none;
}

.cta-row {
  cursor: pointer;
}
.cta-row td {
  background: transparent !important;
  border: 2px dashed #7f8c8d;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.cta-row td::before {
  display: none;
}
.cta-row:hover td {
  border-color: #0069B1;
  background: rgba(0, 105, 177, 0.05) !important;
}
.cta-row--disabled {
  cursor: default;
}
.cta-row--disabled td {
  border-style: solid;
  border-color: #ccc;
}
.cta-row--disabled:hover td {
  border-color: #ccc;
  background: transparent !important;
}
.cta-row--disabled .cta-content {
  color: #94a3b8;
  font-weight: 400;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 600;
}

.cta-counter {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
}

.catch-cta-bar {
  cursor: pointer;
  border: 2px dashed #7f8c8d;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-bottom: 8px;
}
.catch-cta-bar:hover {
  border-color: #0069B1;
  background: rgba(0, 105, 177, 0.05);
}
.catch-cta-bar--disabled {
  cursor: default;
  border-style: solid;
  border-color: #ccc;
}
.catch-cta-bar--disabled:hover {
  border-color: #ccc;
  background: transparent;
}
.catch-cta-bar--disabled .cta-content {
  color: #94a3b8;
  font-weight: 400;
}

.catch-date-row {
  cursor: pointer;
}
.catch-date-row td {
  padding: 12px 16px;
}
.catch-date-row td:hover {
  background: #fafafa;
}

.catch-date-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catch-date-summary {
  font-size: 12px;
  color: #7f8c8d;
}

.catch-entry {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.catch-entry:last-child {
  border-bottom: none;
}

.myspot-delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  margin: 0 0 0 auto;
  padding: 2px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  white-space: normal;
}
.myspot-delete-btn:hover {
  background: white;
  border-color: #0069B1;
}
.myspot-delete-btn:active {
  transform: scale(0.92);
}
.myspot-delete-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.add-spot-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.add-spot-cancel-btn,
.add-spot-save-btn {
  display: inline-block;
  margin: 0;
  max-width: none;
  white-space: nowrap;
  padding: 14px 20px;
  min-width: 96px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  width: 50%;
}
@media (min-width: 768px) {
  .add-spot-cancel-btn,
  .add-spot-save-btn {
    padding: 6px 12px;
    font-size: 14px;
    width: auto;
  }
}

.add-spot-cancel-btn {
  background: none;
  border: 1px solid #94a3b8;
  color: #7f8c8d;
}
.add-spot-cancel-btn:hover {
  background: #f8f9fa;
  color: #666;
}
.add-spot-cancel-btn:active {
  transform: scale(0.97);
}

.spot-mini-map-container {
  position: relative;
  margin-bottom: 12px;
}

.spot-mini-map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  z-index: 0;
}
@media (max-width: 480px) {
  .spot-mini-map {
    height: 160px;
  }
}

.spot-geolocate-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.spot-geolocate-btn:hover {
  background: white;
  border-color: #0069B1;
}
.spot-geolocate-btn:active {
  transform: scale(0.92);
}
.spot-geolocate-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.spot-geolocate-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.spot-mini-map-hint {
  font-size: 0.625rem;
  color: #7f8c8d;
  margin: 4px 0 8px;
  text-align: center;
}

.expanded-row {
  display: none;
  background: #f8f9fa;
}
.expanded-row.show {
  display: table-row;
}
.expanded-row td {
  padding: 0;
  border-bottom: 2px solid #0069B1;
}

.expanded-row-content {
  padding: 20px;
  background: #f8f9fa;
}
@media (max-width: 767px) {
  .expanded-row-content {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .expanded-row-content {
    padding: 8px;
  }
}

.table-dark {
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.forecast-table-container {
  margin-top: 20px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.forecast-table-header {
  background: #002D72;
  color: white;
  padding: 12px 15px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid rgb(0, 24.8684210526, 63);
}

.forecast-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.forecast-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}
.forecast-table th {
  background: #002D72;
  color: white;
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
}
.forecast-table th:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 11;
}
.forecast-table td {
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #f0f0f0;
}
.forecast-table td:last-child {
  border-right: none;
}
.forecast-table td:first-child {
  background: #002D72;
  color: white;
  font-weight: 600;
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 5;
}
.forecast-table tbody tr {
  background: white;
  transition: background 0.2s;
}
.forecast-table tbody tr:hover {
  background: #f8f9fa;
}
.forecast-table tbody tr.forecast-row-highlight {
  background: #e8f5e9;
  font-weight: 500;
}
.forecast-table tbody tr.forecast-row-highlight:hover {
  background: #d4edda;
}

.forecast-table__date-label {
  border-bottom: 2px solid rgb(0, 24.8684210526, 63);
  border-right: 2px solid rgb(0, 24.8684210526, 63);
  padding: 8px 4px;
  font-size: 11px;
}

.forecast-table__day-header {
  border-right: 2px solid rgb(0, 24.8684210526, 63);
  font-size: 12px;
  padding: 10px 4px;
}

.forecast-table__metric-label {
  border-bottom: 1px solid rgb(0, 24.8684210526, 63);
  border-right: 2px solid rgb(0, 24.8684210526, 63);
  font-size: 11px;
  padding: 6px 4px;
}

.forecast-table__cell {
  padding: 5px 2px;
  text-align: center;
  border-right: 1px solid #eee;
  font-size: 10px;
  overflow: hidden;
}
.forecast-table__cell--day-start {
  border-left: 2px solid #bbb;
}
.forecast-table__cell--gated {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

.forecast-row-time td,
.forecast-row-compact td {
  padding-top: 1px;
  padding-bottom: 1px;
  line-height: 1.5;
}

.forecast-row-time th,
.forecast-row-compact th {
  padding-top: 1px;
  padding-bottom: 1px;
}

.forecast-row-winddir td {
  padding-top: 2px;
  padding-bottom: 2px;
  line-height: 1.85;
}

.forecast-row-winddir th {
  padding-top: 1px;
  padding-bottom: 1px;
}

.forecast-table__tide-cell {
  padding: 0;
  height: 210px;
  background: #fafafa;
  position: relative;
}
.forecast-table__tide-cell--gated::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(var(--gate-pct) - 50px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent, black 50px);
  -webkit-mask-image: linear-gradient(to right, transparent, black 50px);
}

[data-theme=dark] .forecast-table__tide-cell--gated::after {
  background: rgba(30, 30, 30, 0.3);
}

.fbi-score-cell {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbi-score-pill {
  font-weight: 700;
  font-size: 26px;
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 4px;
  cursor: help;
}

.forecast-table-legend {
  padding: 10px 15px;
  background: #fafafa;
  border-top: 1px solid #e0e0e0;
  font-size: 11px;
}

@media (max-width: 768px) {
  .forecast-table {
    font-size: 11px;
  }
  .forecast-table th {
    padding: 8px 6px;
    font-size: 10px;
  }
  .forecast-table td {
    padding: 8px 6px;
  }
  .forecast-table-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .forecast-table {
    font-size: 10px;
  }
  .forecast-table th {
    padding: 6px 4px;
    font-size: 9px;
  }
  .forecast-table td {
    padding: 6px 4px;
  }
}
.feature-card {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #0069B1;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 15px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
}

.form-row {
  display: flex;
  gap: 15px;
}
.form-row .form-group {
  flex: 1;
}
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.form-row--3col .form-group {
  flex: 1;
  min-width: 0;
}
@media (max-width: 600px) {
  .form-row--3col {
    flex-wrap: wrap;
  }
}
.form-row--4col .form-group {
  flex: 1;
  min-width: 0;
}
@media (max-width: 600px) {
  .form-row--4col {
    flex-wrap: wrap;
  }
  .form-row--4col .form-group {
    flex: 1 1 45%;
  }
}
.form-row--conditions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-row--conditions .form-group {
  flex: 1;
  min-width: 60px;
}
.form-row--conditions .form-group label {
  font-size: 11px;
  color: #7f8c8d;
}
@media (max-width: 600px) {
  .form-row--conditions .form-group {
    flex: 1 1 30%;
  }
}

.form-input--sm {
  padding: 6px 8px;
  font-size: 12px;
}

.form-actions {
  margin-top: 10px;
}
.form-actions--right {
  text-align: right;
}

.catches-scroll-area {
  overflow-y: auto;
  max-height: calc(100vh - 160px);
  -webkit-overflow-scrolling: touch;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  transition: border-color 0.2s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #0069B1;
}
.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
  background: #f8f9fa;
  color: #7f8c8d;
  cursor: not-allowed;
}
.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: #94a3b8;
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #FF7500;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  width: auto;
  max-width: none;
  margin: 0;
}
.btn-primary:hover {
  background: rgb(204, 93.6, 0);
}
.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.btn-primary--blue {
  background: #0069B1;
}
.btn-primary--blue:hover {
  background: rgb(0, 74.7457627119, 126);
}

.btn-muted {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #7f8c8d;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  width: auto;
  max-width: none;
  margin: 0;
}
.btn-muted:hover {
  background: transparent;
  color: #555;
}
.btn-muted:active {
  transform: none;
}

.btn-secondary {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  color: #666;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto;
  max-width: none;
  margin: 0;
}
.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #94a3b8;
  color: #333333;
}
.btn-secondary:disabled {
  background: transparent;
  color: #94a3b8;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

.saved-spots-placeholder,
.catch-history-placeholder {
  margin-top: 15px;
  opacity: 0.6;
}

.spot-item-preview,
.catch-item-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
}
.spot-item-preview:last-child,
.catch-item-preview:last-child {
  margin-bottom: 0;
}

.spot-icon,
.catch-icon {
  font-size: 18px;
  color: #7f8c8d;
}

.spot-info,
.catch-info {
  flex: 1;
  min-width: 0;
}
.spot-info strong,
.catch-info strong {
  display: block;
  font-size: 14px;
  color: #333333;
  margin-bottom: 2px;
}

.spot-meta,
.catch-meta {
  font-size: 12px;
  color: #7f8c8d;
}

.spot-score {
  font-size: 13px;
  font-weight: 600;
  color: #0069B1;
  white-space: nowrap;
}

.catch-bait {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.gear-grid {
  display: grid;
  gap: 15px;
  margin-top: 15px;
}

.gear-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  border-left: 3px solid #0069B1;
}
.gear-card h4 {
  color: #333333;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}
.gear-card ul {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.blog-article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-content {
  padding: 20px;
}

.article-card-title {
  color: #333333;
  font-size: 18px;
  margin: 8px 0 10px;
  line-height: 1.3;
}

.article-card-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card.border-bottom {
  border-bottom: 1px solid #e5e7eb !important;
  background: transparent;
}

.rank-badge {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 28px;
  font-family: "Arial Black", "Helvetica Bold", sans-serif;
  color: white;
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.5);
}

.score-bar {
  height: 20px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #e74c3c, #f39c12, #2ecc71);
  transition: width 0.5s;
}

.article-badge {
  background: #0069B1;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.article-tag {
  background: #e8f4f8;
  color: #0069B1;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.species-tag {
  display: inline-block;
  background: #e8f4f8;
  color: #0069B1;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 12px;
  margin: 2px;
}

.bait-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bait-tag {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}
.bait-tag.live {
  background: #e8f5e9;
  color: #2e7d32;
}
.bait-tag.frozen {
  background: #e3f2fd;
  color: #1565c0;
}
.bait-tag.service {
  background: #fff3e0;
  color: #e65100;
}

.service-tag {
  background-color: #f5f5f0;
  color: #555;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .service-tag {
    padding: 4px 10px;
    font-size: 11px;
  }
}

.location-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.location-description {
  margin-top: 4px;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.location-tag {
  background: #e8f4f8;
  color: #0069B1;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 0;
}
.location-tag.accommodation {
  background: #e8f5e9;
  color: #2e7d32;
}
.location-tag.fees {
  background: #fff3e0;
  color: #e65100;
}
.location-tag.hazard {
  background: #ffebee;
  color: #c62828;
}
.location-tag.noaa-alert {
  background: #ffebee;
  color: #c62828;
  white-space: nowrap;
  display: inline-block;
  margin-left: 6px;
}

.fbi-tag {
  background: rgba(255, 255, 255, 0.65);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-left: 6px;
  border: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .fbi-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
}

.app-header {
  height: var(--banner-h);
  position: sticky;
  top: 0;
  z-index: 1020;
  background: white;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.app-header-meta {
  display: none;
}
@media (max-width: 767px) {
  .app-header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    bottom: 6px;
    right: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.15s ease;
  }
  .app-header-meta:active {
    background: rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 767px) {
  .app-header-version {
    display: none;
  }
}

.app-header-refresh-icon {
  height: 12px;
  width: 12px;
  vertical-align: middle;
  margin-left: 3px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.app-header-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.section-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: #002D72;
  text-transform: uppercase;
  height: var(--header-h);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 0.375rem;
  position: sticky;
  top: calc(var(--banner-h) + var(--nav-h));
  z-index: 1019;
  background: white;
}
@media (max-width: 767px) {
  .section-header {
    font-size: 1.0625rem;
  }
}
.section-header--hint-only {
  margin: 0 0 15px;
  height: auto;
  position: static;
  border-bottom: none;
}

@media (max-width: 767px) {
  #blogHeader {
    display: flex !important;
  }
}

body.view-map,
body.view-table,
body.view-brag,
body.view-blog,
body.view-settings,
body.view-myspots {
  height: 100dvh;
  overflow: hidden;
}
body.view-map .container,
body.view-table .container,
body.view-brag .container,
body.view-blog .container,
body.view-settings .container,
body.view-myspots .container {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
body.view-map .tab-container,
body.view-table .tab-container,
body.view-brag .tab-container,
body.view-blog .tab-container,
body.view-settings .tab-container,
body.view-myspots .tab-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
body.view-map .app-header,
body.view-table .app-header,
body.view-brag .app-header,
body.view-blog .app-header,
body.view-settings .app-header,
body.view-myspots .app-header {
  flex-shrink: 0;
  position: relative;
}
body.view-map .tab-nav,
body.view-map .map-legend,
body.view-map .footer,
body.view-map .mobile-legal-footer,
body.view-table .tab-nav,
body.view-table .map-legend,
body.view-table .footer,
body.view-table .mobile-legal-footer,
body.view-brag .tab-nav,
body.view-brag .map-legend,
body.view-brag .footer,
body.view-brag .mobile-legal-footer,
body.view-blog .tab-nav,
body.view-blog .map-legend,
body.view-blog .footer,
body.view-blog .mobile-legal-footer,
body.view-settings .tab-nav,
body.view-settings .map-legend,
body.view-settings .footer,
body.view-settings .mobile-legal-footer,
body.view-myspots .tab-nav,
body.view-myspots .map-legend,
body.view-myspots .footer,
body.view-myspots .mobile-legal-footer {
  flex-shrink: 0;
  position: static;
}
body.view-map .section-header,
body.view-table .section-header,
body.view-brag .section-header,
body.view-blog .section-header,
body.view-settings .section-header,
body.view-myspots .section-header {
  flex-shrink: 0;
  position: relative;
  top: auto;
  z-index: 2;
}

body.view-map #tab-publicSpots {
  display: contents;
}
body.view-map #allSpotsRankedHeader,
body.view-map .table-responsive {
  display: none;
}
body.view-map .map-container {
  display: block;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  z-index: 0;
}
body.view-map #map {
  height: 100%;
}

body.view-table #tab-publicSpots {
  display: contents;
}
body.view-table #InteractiveMapHeader,
body.view-table .map-container,
body.view-table .map-legend {
  display: none !important;
}
body.view-table .table-responsive {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

body.view-myspots #tab-mySpots {
  display: contents;
}
body.view-myspots #spotCtaBar {
  flex-shrink: 0;
}
body.view-myspots .table-responsive {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
body.view-myspots #addSpotSection {
  flex-shrink: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.view-brag #tab-bragBoard {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
body.view-brag .brag-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0.375rem;
  display: flex;
  flex-direction: column;
}

body.view-blog #tab-blog {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
body.view-blog .blog-posts-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.view-settings #tab-settings {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}

.section-hint {
  font-size: 12px;
  font-weight: 400;
  color: #7f8c8d;
  font-style: italic;
  flex-basis: 100%;
  text-transform: none;
}
.section-hint img {
  height: 14px;
  vertical-align: middle;
}

.section-hint-btn {
  display: inline;
  padding: 1px 6px;
  margin-left: 4px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: white;
  color: #94a3b8;
  font-size: 10px;
  line-height: 1.4;
  text-transform: lowercase;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  top: 1px;
  transition: all 0.15s ease;
  outline: none;
}
.section-hint-btn:hover, .section-hint-btn:focus {
  color: #666;
  border-color: #94a3b8;
  background: #f8f9fa;
}
@media (max-width: 767px) {
  .section-hint-btn {
    display: none !important;
  }
}

.tooltip .tooltip-inner {
  font-size: 11px;
  padding: 5px 10px;
  max-width: 400px;
  white-space: nowrap;
  line-height: 1.4;
  background: #4a4a4a;
  border-radius: 4px;
  letter-spacing: 0.1px;
}
.tooltip .tooltip-inner img {
  height: 12px;
  vertical-align: middle;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #4a4a4a;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #4a4a4a;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #4a4a4a;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #4a4a4a;
}

.jump-to-map-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 2px;
  margin: 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.jump-to-map-btn:hover {
  background: white;
  border-color: #0069B1;
}
.jump-to-map-btn:active {
  transform: translateY(-50%) scale(0.92);
}
.jump-to-map-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.section-header .jump-to-map-btn {
  right: 118px;
}
@media (max-width: 767px) {
  .section-header .jump-to-map-btn {
    right: 108px;
  }
}

.view-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 20px;
  background: #e0e0e0;
  cursor: pointer;
  z-index: 1;
  user-select: none;
}

.view-toggle-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.view-toggle-circle img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .view-toggle-circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
  .view-toggle-circle img {
    width: 16px;
    height: 16px;
  }
}

.view-toggle-label {
  font-size: 11px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 8px 0 6px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .view-toggle-label {
    font-size: 10px;
    padding: 0 6px 0 5px;
  }
}

.view-toggle--right .view-toggle-label {
  padding: 0 6px 0 8px;
}
@media (max-width: 767px) {
  .view-toggle--right .view-toggle-label {
    padding: 0 5px 0 6px;
  }
}

.tab-page-header {
  margin-bottom: 20px;
}

.tab-page-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.spot-limit-counter {
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  color: #7f8c8d;
  text-transform: none;
}
.spot-limit-counter--exceeded {
  color: #c62828;
  font-weight: 600;
}

.limit-info {
  font-size: 13px;
  color: #7f8c8d;
  text-align: center;
  padding: 6px 12px;
  margin-bottom: 12px;
}
.limit-info--warning {
  color: #e65100;
}
.limit-info--exceeded {
  color: #c62828;
  font-weight: 600;
}

.catch-log-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
}
.catch-log-item:last-child {
  border-bottom: none;
}

.catch-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.catch-info strong {
  font-size: 14px;
  color: #333333;
}

.catch-row1 {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.catch-row-detail {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.catch-row2 {
  font-size: 11px;
  color: #7f8c8d;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catch-row3 {
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catch-method-chip {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  background: #f8f9fa;
  color: #666;
  white-space: nowrap;
}

.catch-conditions-hint {
  font-size: 11px;
  color: #0069B1;
  margin-top: 4px;
  padding: 0 2px;
}

.catch-delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 2px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}
.catch-delete-btn:hover {
  background: white;
  border-color: #0069B1;
}
.catch-delete-btn:active {
  transform: scale(0.92);
}

.catch-delete-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.form-radio-group {
  display: flex;
  gap: 16px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
}

.tab-container {
  margin-top: 0;
  flex: 1;
  overflow: visible;
}

.tab-nav {
  display: flex;
  gap: 10px;
  height: var(--nav-h);
  align-items: center;
  border-bottom: none;
  box-shadow: inset 0 -2px 0 #e0e0e0;
  margin: 0;
  position: sticky;
  top: var(--banner-h);
  z-index: 1020;
  background: white;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.375rem 1.5rem;
  border: none;
  background: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s ease;
  white-space: nowrap;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.tab-btn:hover {
  color: #002D72;
  background: none;
}
.tab-btn.active {
  color: #002D72;
  border-bottom-color: #002D72;
  background: none;
}
.tab-btn--right {
  margin-left: auto;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

@media (max-width: 767px) {
  #tab-blog,
  #tab-bragBoard {
    padding: 0 12px;
  }
}

@keyframes tabSlideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    background: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    padding: 4px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    justify-content: space-around;
    align-items: center;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 6px 2px 4px;
  border: none;
  background: transparent !important;
  color: #7f8c8d;
  cursor: pointer;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 50px;
  position: relative;
  margin: 0;
  border-radius: 0;
  width: auto;
  max-width: none;
}
.bottom-nav-item.active {
  color: #0069B1;
}
.bottom-nav-item.active .bottom-nav-icon {
  opacity: 1;
  filter: grayscale(0%);
}
.bottom-nav-item.active .bottom-nav-label {
  color: #0069B1;
}

.bottom-nav-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}
.bottom-nav-item.active .bottom-nav-icon {
  opacity: 1;
  filter: grayscale(0%);
}

.bottom-nav-label {
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  color: #7f8c8d;
}

@media (max-width: 767px) {
  .tab-nav {
    display: none !important;
  }
  body.app-body {
    padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom, 0px));
  }
}
.mobile-legal-footer {
  display: none;
}
@media (max-width: 767px) {
  .mobile-legal-footer {
    display: none;
  }
}

.mobile-legal-sep {
  color: #ccc;
  font-size: 8px;
}

.more-menu {
  display: none;
}
@media (max-width: 767px) {
  .more-menu.open {
    display: block;
    position: fixed;
    left: 0;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    width: 50%;
    z-index: 1019;
  }
}

.more-menu-backdrop {
  display: none;
}

.more-menu-sheet {
  background: white;
  border-radius: 12px 12px 0 0;
  padding: 8px 0 8px;
  animation: moreMenuSlideUp 0.2s ease-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.more-menu-handle {
  width: 28px;
  height: 3px;
  background: #ccc;
  border-radius: 2px;
  margin: 0 auto 8px;
}

.more-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease;
}
.more-menu-item:active {
  background: #f8f9fa;
}

.more-menu-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.7;
}

@keyframes moreMenuSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  #tosStep {
    overflow: hidden;
  }
}
.tos-inline-body {
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}
.tos-inline-body h4 {
  color: #333333;
  margin: 16px 0 8px;
  font-size: 15px;
}
.tos-inline-body ul {
  margin: 8px 0;
  padding-left: 22px;
}
.tos-inline-body li {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .tos-inline-body {
    flex: 1;
    min-height: 0;
    max-height: none;
    padding: 12px;
    font-size: 12px;
  }
}

.tos-inline-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  margin: 0 auto 24px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .tos-inline-footer {
    max-width: 280px;
    padding-top: 12px;
  }
}

.tos-accept-btn {
  width: 100%;
  max-width: 280px;
  margin: 0;
  padding: 12px 16px;
  background: #0069B1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tos-accept-btn:hover:not(:disabled) {
  background: rgb(0, 74.7457627119, 126);
}
.tos-accept-btn:disabled {
  background: #0069B1;
  opacity: 0.45;
  cursor: not-allowed;
}

.tos-decline-btn {
  width: 100%;
  max-width: 280px;
  margin: 0;
  padding: 12px 16px;
  background: transparent;
  color: #7f8c8d;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tos-decline-btn:hover {
  background: transparent;
  border-color: #7f8c8d;
  color: #333333;
}

.sessions-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.sessions-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
}

.sessions-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.sessions-modal-header h3 {
  margin: 0;
  color: #333333;
  font-size: 18px;
}

.sessions-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #7f8c8d;
  cursor: pointer;
  padding: 0;
  width: auto;
  max-width: none;
  margin: 0;
}
.sessions-modal-close:hover {
  color: #333333;
  background: none;
}

.sessions-modal-body {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

#map {
  width: 100%;
  height: var(--map-h);
  border-radius: 10px;
  margin-top: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media (max-width: 767px) {
  #map {
    border-radius: 6px;
  }
}

.map-container {
  display: none;
  margin-top: 0;
  position: relative;
}
@media (max-width: 767px) {
  .map-container {
    margin-top: 0;
  }
}

.leaflet-control-zoom {
  display: none !important;
}

.map-sidebar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
  pointer-events: auto;
}
.map-sidebar::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 10px auto 5px;
  position: sticky;
  top: 0;
}
.map-sidebar.open {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .map-sidebar {
    top: 0;
    bottom: auto;
    width: 40%;
    height: 100%;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    border-radius: 10px 0 0 10px;
  }
  .map-sidebar::before {
    display: none;
  }
  .map-sidebar.open {
    transform: translateX(0);
  }
}

.sidebar-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .sidebar-close-btn {
    position: sticky;
    top: 12px;
    float: right;
    margin-bottom: -32px;
  }
}
.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}
.sidebar-close-btn:active {
  transform: scale(0.95);
}
.sidebar-close-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.map-sidebar-content {
  padding: 20px;
  font-size: 14px;
}
.map-sidebar-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333333;
}
.map-sidebar-content h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333333;
}
.map-sidebar-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}
.map-sidebar-content .gear-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
.map-sidebar-content .gear-card {
  padding: 15px;
  font-size: 13px;
}
.map-sidebar-content .gear-card ul {
  font-size: 13px;
  line-height: 1.7;
  padding-left: 18px;
}
.map-sidebar-content .species-tag {
  font-size: 12px;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .map-sidebar-content {
    padding: 15px;
    font-size: 12px;
  }
  .map-sidebar-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .map-sidebar-content h4 {
    font-size: 12px;
  }
  .map-sidebar-content p {
    font-size: 11px;
  }
  .map-sidebar-content .gear-card {
    padding: 10px;
    font-size: 11px;
  }
  .map-sidebar-content .gear-card ul {
    font-size: 11px;
    line-height: 1.6;
  }
  .map-sidebar-content .species-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}

.sidebar-popup-wrapper {
  padding: 15px;
}
.sidebar-popup-wrapper > h3 {
  color: #0C2B4E;
  margin-bottom: 16px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .sidebar-popup-wrapper {
    padding: 10px;
  }
  .sidebar-popup-wrapper > h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.sidebar-fbi-card {
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A3D64 0%, #1D546C 100%);
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
}
.sidebar-fbi-card.has-bg-image {
  background-color: transparent;
}

.sidebar-fbi-card__gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 35, 73, 0.95) 0%, rgba(10, 35, 73, 0.7) 40%, rgba(10, 35, 73, 0) 100%);
  pointer-events: none;
}

.sidebar-fbi-card__nav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease;
}
.sidebar-fbi-card__nav-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.sidebar-fbi-card__nav-btn:active {
  transform: scale(0.92);
}
.sidebar-fbi-card__nav-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sidebar-fbi-card__measures {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  z-index: 1;
}

.sidebar-fbi-card__measure {
  text-align: center;
  color: white;
}

.sidebar-fbi-card__measure-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.sidebar-fbi-card__measure-value {
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-sidebar-close {
  display: block;
  position: sticky;
  top: 0;
  background: white;
  padding: 10px;
  text-align: right;
  border-bottom: 1px solid #e0e0e0;
  margin: -20px -20px 15px -20px;
  z-index: 10;
}
.map-sidebar-close button {
  width: auto;
  max-width: none;
  padding: 8px 16px;
  margin: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  .map-sidebar-close {
    display: none;
  }
}

.map-controls-container {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-controls-bottom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 2px;
  margin: 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.map-control-btn:hover {
  background: white;
  border-color: #0069B1;
}
.map-control-btn:active {
  transform: scale(0.92);
}
.map-control-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.user-location-marker {
  background: transparent;
}

.user-dot {
  width: 16px;
  height: 16px;
  background: #0069B1;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-layer-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}
.map-layer-toggle:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #0069B1;
}

.layer-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  width: 115px;
  min-width: 115px;
  margin: 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.layer-toggle-btn:hover {
  background: #f5f5f5;
}
.layer-toggle-btn:active {
  transform: none;
}

.layer-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.zoom-reset-btn {
  display: none;
}

.map-control-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1100;
  background: white;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.2s ease;
}
.map-control-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .map-control-popup {
    position: fixed;
    bottom: auto;
    left: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transform: translateX(10px);
    opacity: 0;
  }
  .map-control-popup.open {
    transform: translateX(0);
    opacity: 1;
  }
}

#setupPopup {
  white-space: normal;
}
@media (min-width: 768px) {
  #setupPopup {
    white-space: nowrap;
  }
}

.setup-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 20px;
}
.setup-popup-content span {
  color: #333333;
  font-size: 14px;
}
.setup-popup-content > span {
  display: none;
}
.setup-popup-content select {
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  width: 100%;
}
.setup-popup-content select:focus {
  outline: none;
  border-color: #0069B1;
}
@media (min-width: 768px) {
  .setup-popup-content {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 15px;
  }
  .setup-popup-content > span {
    display: inline;
  }
  .setup-popup-content select {
    padding: 6px 10px;
    font-size: 14px;
    width: auto;
  }
}

.popup-drag-handle {
  display: block;
  width: 40px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 12px auto 8px;
}
@media (min-width: 768px) {
  .popup-drag-handle {
    display: none;
  }
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
@media (min-width: 768px) {
  .popup-field {
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: auto;
  }
}

.popup-field-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .popup-field-label {
    display: none;
  }
}

#filterPopup {
  top: 58px;
}

.filter-popup-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
}
.filter-popup-content .setup-save-btn {
  margin-top: 10px;
}

.filter-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  margin-top: 5px;
}
.filter-section-title:first-child {
  margin-top: 0;
}

.filter-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-left: 4px;
}

.map-legend {
  height: var(--legend-h);
  display: flex;
  align-items: center;
  padding: 0 0.625rem 0 0;
  margin: 0;
  position: sticky;
  bottom: var(--footer-h);
  background: white;
  z-index: 1019;
}

.legend-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.legend-group-left,
.legend-group-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.legend-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.legend-checkbox {
  cursor: pointer;
}
.legend-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  border: 2px solid #94a3b8;
  border-radius: 4px;
  background: white;
  transition: all 0.15s ease;
  position: relative;
}
.legend-checkbox input[type=checkbox]:checked {
  background: #333333;
  border-color: #333333;
}
.legend-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.legend-checkbox input[type=checkbox]:hover {
  border-color: #666;
}

@media (max-width: 767px) {
  .legend-group-right > .legend-item > span {
    display: none;
  }
  .legend-group-left,
  .legend-group-right {
    gap: 8px;
  }
}
.legend-divider {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 6px 0;
}

.legend-section-label {
  font-size: 11px;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.legend-overlay-items {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.overlay-loading .legend-swatch {
  position: relative;
  background: transparent !important;
  border-color: transparent;
}
.overlay-loading .legend-swatch::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 2px solid #ccc;
  border-top-color: #0069B1;
  border-radius: 50%;
  animation: overlay-spin 0.8s linear infinite;
}

@keyframes overlay-spin {
  to {
    transform: rotate(360deg);
  }
}
.smooth-tiles {
  image-rendering: auto;
  image-rendering: smooth;
  filter: blur(3px);
}

.overlay-legends {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  width: 50%;
  min-width: 140px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.radar-legend {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 5px 10px;
  pointer-events: none;
}
.radar-legend .radar-legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radar-legend .radar-legend-label {
  font-size: 0.6rem;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}
.radar-legend .radar-legend-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #78c7f5 0%, #3db83d 25%, #f0e040 50%, #f07830 75%, #e02020 100%);
}

.sst-legend {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 5px 10px;
  pointer-events: none;
}
.sst-legend .sst-legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sst-legend .sst-legend-label {
  font-size: 0.6rem;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}
.sst-legend .sst-legend-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #08306b 0%, #2171b5 20%, #41ab5d 40%, #f7dc6f 60%, #e67e22 80%, #c0392b 100%);
}

.overlay-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.8rem;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.overlay-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bait-shop-popup {
  font-size: 13px;
  line-height: 1.5;
}
.bait-shop-popup strong {
  font-size: 14px;
  color: #333333;
  display: block;
  margin-bottom: 5px;
}

.bait-shop-address {
  color: #555;
  margin-bottom: 4px;
}

.bait-shop-hours {
  color: #0069B1;
  font-weight: 500;
  margin-bottom: 4px;
}

.bait-shop-phone a {
  color: #FF7500;
  text-decoration: none;
}
.bait-shop-phone a:hover {
  text-decoration: underline;
}

.bait-shop-sidebar {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .bait-shop-sidebar {
    padding: 5px 0;
  }
}

.bait-shop-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}
.bait-shop-header .bait-shop-icon {
  width: 50px;
  height: 50px;
}
.bait-shop-header h3 {
  font-size: 20px;
  color: #333333;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .bait-shop-header {
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  .bait-shop-header .bait-shop-icon {
    width: 40px;
    height: 40px;
  }
  .bait-shop-header h3 {
    font-size: 18px;
  }
}

.bait-shop-header-info {
  flex: 1;
}

.bait-shop-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .bait-shop-service-tags {
    gap: 6px;
    margin-top: 8px;
  }
}

.bait-shop-contact {
  margin-bottom: 20px;
}
.bait-shop-contact .bait-shop-address,
.bait-shop-contact .bait-shop-phone {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}
.bait-shop-contact .icon {
  flex-shrink: 0;
}
.bait-shop-contact .bait-shop-phone a {
  color: #FF7500;
  text-decoration: none;
  font-weight: 500;
}
.bait-shop-contact .bait-shop-phone a:hover {
  text-decoration: underline;
}
.bait-shop-contact .bait-shop-address a {
  color: #333333;
  text-decoration: underline;
}
.bait-shop-contact .bait-shop-address a:hover {
  color: #0069B1;
}
@media (min-width: 768px) {
  .bait-shop-contact {
    margin-bottom: 15px;
  }
  .bait-shop-contact .bait-shop-address,
  .bait-shop-contact .bait-shop-phone {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
  }
}

.bait-shop-section {
  margin-bottom: 20px;
}
.bait-shop-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.bait-shop-hours-list {
  background: #fafafa;
  border-radius: 8px;
  padding: 15px;
}

.bait-shop-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  color: #555;
}
.bait-shop-hours-row.today {
  color: #0069B1;
  font-weight: 600;
}
.bait-shop-hours-row .day-name {
  min-width: 90px;
}

.greeting-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - var(--footer-h, 3.5rem));
  min-height: calc(100dvh - var(--footer-h, 3.5rem));
  padding: 30px 20px 20px;
  margin: 0 auto;
  text-align: center;
}
.greeting-screen #authStep,
.greeting-screen #consentStep {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
.greeting-screen #tosStep {
  flex-direction: column;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 767px) {
  .greeting-screen {
    padding: 20px 16px 16px;
  }
  .greeting-screen #authStep,
  .greeting-screen #consentStep,
  .greeting-screen #tosStep {
    flex: 1;
  }
  .greeting-screen .auth-btn-guest,
  .greeting-screen .consent-continue-btn,
  .greeting-screen .back-to-greeting-btn,
  .greeting-screen .tos-accept-btn,
  .greeting-screen .tos-decline-btn {
    width: 280px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

body.login-flow .v2-sidebar {
  display: none !important;
}
body.login-flow .bottom-nav {
  display: none !important;
}
body.login-flow .container {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.greeting-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
@media (max-width: 767px) {
  .greeting-logo {
    max-width: 120px;
    margin-bottom: 12px;
  }
}

.greeting-title {
  color: #333333;
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .greeting-title {
    font-size: 20px;
  }
}

.greeting-subtitle {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .auth-buttons {
    margin-top: auto;
  }
}

.google-btn-container {
  display: flex;
  justify-content: center;
  min-height: 44px;
  height: 44px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.google-btn-container:focus, .google-btn-container:active, .google-btn-container:focus-visible, .google-btn-container:focus-within {
  outline: none;
  box-shadow: none;
}
.google-btn-container > div, .google-btn-container iframe {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}
.google-btn-container > div:focus, .google-btn-container > div:active, .google-btn-container > div:focus-visible, .google-btn-container iframe:focus, .google-btn-container iframe:active, .google-btn-container iframe:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7f8c8d;
  font-size: 0.75rem;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.tos-notice {
  font-size: 0.75rem;
  color: #7f8c8d;
  margin-top: 20px;
  margin-bottom: 24px;
}
.tos-notice a {
  color: #0069B1;
  text-decoration: underline;
}

.auth-error {
  background: #fee;
  color: #c00;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 14px;
}

.consent-title {
  color: #333333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.consent-subtitle {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 28px;
}

.consent-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 767px) {
  .consent-checkboxes {
    gap: 10px;
    margin-bottom: 20px;
  }
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .consent-checkbox {
    padding: 12px;
    gap: 10px;
  }
}
.consent-checkbox:hover {
  border-color: #0069B1;
  background: rgba(0, 105, 177, 0.03);
}
.consent-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.consent-checkbox input[type=checkbox]:checked + .consent-check-icon {
  background: #0069B1;
  border-color: #0069B1;
}
.consent-checkbox input[type=checkbox]:checked + .consent-check-icon::after {
  display: block;
}
.consent-checkbox input[type=checkbox]:checked ~ .consent-check-text {
  color: #333333;
}

.consent-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 1px;
}
.consent-check-icon::after {
  content: "";
  display: none;
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-check-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  transition: all 0.2s ease;
}
.consent-check-text a {
  color: #0069B1;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .consent-check-text {
    font-size: 13px;
  }
}

.consent-continue-btn {
  width: 100%;
  max-width: 280px;
  padding: 14px 24px;
  margin: 0 auto;
  background: #0069B1;
}
@media (max-width: 767px) {
  .consent-continue-btn {
    margin-top: auto;
  }
}
.consent-continue-btn {
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.consent-continue-btn:hover:not(:disabled) {
  background: rgb(0, 74.7457627119, 126);
}
.consent-continue-btn:disabled {
  background: #0069B1;
  opacity: 0.45;
  cursor: not-allowed;
}

.auth-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.auth-loading-overlay p {
  margin-top: 15px;
  color: #0069B1;
  font-size: 14px;
}

.auth-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top-color: #0069B1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.user-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.user-menu-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 15px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.user-menu-trigger:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-arrow {
  font-size: 10px;
  color: #7f8c8d;
  transition: transform 0.2s;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.user-dropdown-header strong {
  display: block;
  color: #333333;
  font-size: 14px;
}
.user-dropdown-header small {
  color: #7f8c8d;
  font-size: 0.75rem;
}

.user-dropdown-divider {
  height: 1px;
  background: #f0f0f0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 15px;
  border: none;
  background: none;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.user-dropdown-item:hover {
  background: #f5f5f5;
}
.user-dropdown-item:last-child {
  border-radius: 0 0 12px 12px;
}

.user-dropdown-logout {
  color: #c00;
}

.session-item {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
}
.session-item.current-session {
  background: #f0f7ff;
  border-color: #0069B1;
}

.session-device {
  font-weight: 500;
  color: #333333;
  margin-bottom: 5px;
}

.session-details {
  font-size: 0.75rem;
  color: #7f8c8d;
}

.session-current-badge {
  display: inline-block;
  background: #0069B1;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 10px;
}

.session-revoke-btn {
  background: none;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 10px;
  width: auto;
  max-width: none;
}
.session-revoke-btn:hover {
  background: #e74c3c;
  color: white;
}

@media (max-width: 768px) {
  .user-menu {
    top: 10px;
    right: 10px;
  }
  .user-menu-trigger {
    padding: 6px 10px;
  }
  .user-name {
    display: none;
  }
}
.blog-article {
  background: white;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.blog-article.featured {
  border-left: 4px solid #0069B1;
}

.article-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.article-date {
  color: #7f8c8d;
  font-size: 13px;
}

.article-title {
  color: #333333;
  font-size: 1.375rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-author {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.article-content {
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
.article-content p {
  margin-bottom: 16px;
}
.article-content h1 {
  color: #333333;
  font-size: 28px;
  margin: 30px 0 15px;
  text-align: left;
}
.article-content h2 {
  color: #333333;
  font-size: 1.375rem;
  margin: 25px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.article-content h3 {
  color: #0069B1;
  font-size: 18px;
  margin: 20px 0 10px;
}
.article-content h4 {
  color: #333333;
  font-size: 18px;
  margin: 25px 0 12px;
}
.article-content ul, .article-content ol {
  margin: 16px 0;
  padding-left: 25px;
}
.article-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.article-content strong {
  color: #333333;
}
.article-content em {
  color: #0069B1;
}
.article-content code {
  background: #F4F4F4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 14px;
}
.article-content pre {
  background: #F4F4F4;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
}

.article-excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-read-more {
  color: #0069B1;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
}
.article-read-more:hover {
  color: #FF7500;
  text-decoration: underline;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.blog-article-full {
  max-width: 800px;
  margin: 0 auto;
}

.article-featured-image {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
}
.article-featured-image img {
  width: 100%;
  height: auto;
}

.blog-coming-soon {
  background: #fafafa;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}
.blog-coming-soon h4 {
  color: #333333;
  font-size: 16px;
  margin-bottom: 8px;
}
.blog-coming-soon p {
  color: #7f8c8d;
  font-size: 14px;
  margin: 0;
}

.blog-loading {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.blog-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top-color: #0069B1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
  background: #fafafa;
  border-radius: 12px;
}

.blog-error {
  text-align: center;
  padding: 40px 20px;
  background: #fff5f5;
  border-radius: 12px;
  color: #c0392b;
}

.settings-section {
  margin-bottom: 30px;
}

.settings-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}
.settings-title-row .settings-title {
  flex: 1;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.settings-title-row .setup-save-btn {
  padding: 6px 12px;
  min-width: 96px;
  font-size: 14px;
  width: auto;
  max-width: none;
  display: inline-block;
  margin: 0;
  text-align: center;
}

.settings-signout-btn {
  padding: 6px 12px;
  min-width: 96px;
  width: auto;
  max-width: none;
  display: inline-block;
  margin: 0;
  background: transparent;
  color: #dc3545;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
  box-shadow: inset 0 0 0 1.5px #dc3545;
}
.settings-signout-btn:hover {
  background: rgba(220, 53, 69, 0.08);
  box-shadow: inset 0 0 0 1.5px #b02a37;
  color: #b02a37;
}

.settings-account-email-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.settings-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  background: #e0e0e0;
  color: #666;
  white-space: nowrap;
  flex-shrink: 0;
}
.settings-role-badge--admin {
  background: #fef3c7;
  color: #92400e;
}
.settings-role-badge--pro {
  background: linear-gradient(135deg, #FFB549, #FF7500);
  color: white;
}

.settings-title {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.settings-subtitle {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.settings-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 16px;
}
.settings-filter-row .popup-field {
  width: auto;
  flex-direction: row;
}

.settings-map-layers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.settings-layer-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
}

.settings-layer-group-label {
  font-size: 13px;
  font-weight: 600;
  color: #7f8c8d;
  min-width: 70px;
}

.settings-layer-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}
.settings-layer-option input[type=radio],
.settings-layer-option input[type=checkbox] {
  accent-color: #0069B1;
  margin: 0;
  cursor: pointer;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.setting-item:last-child {
  border-bottom: none;
}

.setting-info {
  flex: 1;
  padding-right: 20px;
}

.setting-label {
  font-weight: 500;
  margin-bottom: 3px;
  color: #333333;
}

.setting-description {
  font-size: 0.75rem;
  color: #7f8c8d;
}

.setting-control {
  width: auto;
  min-width: 140px;
}

.about-info {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.8;
}
.about-info p {
  margin-bottom: 5px;
}

.about-links a {
  color: #0069B1;
  text-decoration: none;
}
.about-links a:hover {
  text-decoration: underline;
}

.empty-state-text {
  color: #7f8c8d;
  font-size: 14px;
  font-style: italic;
}

.feature-note {
  text-align: center;
  color: #c62828;
  font-size: 13px;
  margin: 15px 0;
  padding: 15px;
  background: #ffebee;
  border-radius: 8px;
  border: 1px solid rgba(231, 76, 60, 0.2);
}
.feature-note a {
  color: #c62828;
  font-weight: 600;
  text-decoration: underline;
}
.feature-note a:hover {
  color: #e74c3c;
}

.saved-spots-list {
  margin-top: 15px;
}

.saved-spot-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.saved-spot-info {
  flex: 1;
}
.saved-spot-info h4 {
  color: #333333;
  font-size: 16px;
  margin: 0 0 5px 0;
}
.saved-spot-info p {
  color: #7f8c8d;
  font-size: 0.75rem;
  margin: 0;
}

.saved-spot-actions {
  display: flex;
  gap: 10px;
}

.catch-stats-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.catch-stat {
  flex: 1;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.catch-stat .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}
.catch-stat .stat-label {
  font-size: 0.75rem;
  color: #7f8c8d;
  margin-top: 5px;
}

.catch-list {
  margin-top: 20px;
}

.catch-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.catch-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.catch-info {
  flex: 1;
}
.catch-info h4 {
  color: #333333;
  font-size: 16px;
  margin: 0 0 5px 0;
}
.catch-info p {
  color: #7f8c8d;
  font-size: 0.75rem;
  margin: 0;
}

.info-cards-container {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}
@media (max-width: 768px) {
  .info-cards-container {
    flex-direction: column;
  }
}

.info-card {
  flex: 1;
  padding: 16px;
  border-radius: 8px;
  min-width: 0;
}
.info-card.species-card {
  background: #f0f7ff;
  border-left: 4px solid #0069B1;
}
.info-card.bait-card {
  background: #f0fff4;
  border-left: 4px solid #2e7d32;
}
.info-card.rig-card {
  background: #fff8f0;
  border-left: 4px solid #FF7500;
}
.info-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}
.info-card .species-list,
.info-card .bait-list,
.info-card .rig-info {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

.detail-wrapper {
  padding: 15px 0;
}

.detail-address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.navigate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: transparent;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navigate-btn img {
  width: 24px;
  height: 24px;
}
.navigate-btn:hover {
  transform: scale(1.1);
}

.navigate-btn-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 8px;
  padding: 2px;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navigate-btn-inline img {
  width: 20px;
  height: 20px;
}
.navigate-btn-inline:hover {
  transform: scale(1.1);
}

.fbi-card {
  background: linear-gradient(135deg, #1A3D64 0%, #1D546C 100%);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .fbi-card {
    padding: 14px;
    margin-bottom: 14px;
  }
}
.fbi-card__nav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.fbi-card__nav-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.fbi-card__nav-btn:hover {
  border-color: #0069B1;
}
.fbi-card__nav-btn:active {
  transform: scale(0.92);
}
.fbi-card__layout {
  display: flex;
  align-items: stretch;
}
@media (max-width: 576px) {
  .fbi-card__layout {
    flex-direction: column;
    gap: 16px;
  }
}
.fbi-card__score {
  text-align: center;
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100px;
}
@media (max-width: 576px) {
  .fbi-card__score {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 16px;
  }
}
.fbi-card__score-label {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}
.fbi-card__score-value {
  font-size: 48px;
  font-weight: 900;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  letter-spacing: -1px;
  line-height: 1;
  cursor: help;
}
.fbi-card__score-rating {
  font-size: 12px;
  opacity: 0.9;
}
.fbi-card__measures {
  flex: 1;
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 12px;
}
@media (max-width: 576px) {
  .fbi-card__measures {
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 380px) {
  .fbi-card__measures {
    grid-template-columns: 1fr;
  }
}
.fbi-card__measure {
  padding: 4px 0;
}
.fbi-card__measure-label {
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
}
.fbi-card__measure-value {
  font-size: 14px;
  font-weight: bold;
}
.fbi-card__measure-sub {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 2px;
  font-style: italic;
}

.species-bait-rig-cards {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .species-bait-rig-cards {
    flex-direction: column;
  }
}

.info-card-species,
.info-card-bait,
.info-card-rig {
  flex: 1;
  min-width: 200px;
  padding: 16px;
  border-radius: 8px;
}

.info-card-species {
  background: #f0f7ff;
  border-left: 4px solid #0069B1;
}

.info-card-bait {
  background: #f0f7ff;
  border-left: 4px solid #0069B1;
}

.info-card-rig {
  background: #f0f7ff;
  border-left: 4px solid #0069B1;
}

.info-card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.info-card-title-species {
  color: #0069B1;
}

.info-card-title-bait {
  color: #0069B1;
}

.info-card-title-rig {
  color: #0069B1;
}

.info-card-content {
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
}

.detail-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .detail-grid-2 {
    grid-template-columns: 1fr;
  }
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #333333;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(10, 35, 73, 0.25);
}

.hero-section .accordion {
  background: transparent !important;
}
.hero-section .accordion .accordion-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0.5rem;
  box-shadow: none !important;
  outline: none !important;
}
.hero-section .accordion .accordion-header {
  margin: 0;
  background: transparent !important;
  border: none !important;
}
.hero-section .accordion .accordion-button {
  background: transparent !important;
  color: white !important;
  border-radius: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 1rem !important;
  width: 100% !important;
}
.hero-section .accordion .accordion-button::after {
  filter: invert(1);
}
.hero-section .accordion .accordion-button:not(.collapsed) {
  background: transparent !important;
  color: white !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}
.hero-section .accordion .accordion-button:hover {
  background: transparent !important;
}
.hero-section .accordion .accordion-button:focus, .hero-section .accordion .accordion-button:active, .hero-section .accordion .accordion-button:focus-within {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  background: transparent !important;
}
.hero-section .accordion .accordion-button:focus-visible {
  box-shadow: none !important;
  background: transparent !important;
}
.hero-section .accordion .accordion-collapse {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hero-section .accordion .accordion-body {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9);
  border: none !important;
  border-radius: 0 !important;
  padding: 0 1rem 1rem 1rem !important;
  margin: 0 !important;
}

.guide-card-featured {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .guide-card-featured {
    flex-direction: row;
  }
}
.guide-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}
.guide-card-featured .guide-card-image {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .guide-card-featured .guide-card-image {
    width: 40%;
  }
}
.guide-card-featured .guide-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .guide-card-featured .guide-card-image img {
    height: 100%;
    min-height: 220px;
  }
}
.guide-card-featured .guide-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guide-card-featured .guide-card-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.guide-card-featured .guide-card-content p {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .guide-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guide-card {
  display: block;
  background: white;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}
.guide-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.guide-card p {
  color: #666;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
}

.guide-date {
  display: block;
  font-size: 0.625rem;
  color: #7f8c8d;
  margin-bottom: 0.5rem;
}

.guide-read-more {
  color: #0069B1;
  font-weight: 600;
  white-space: nowrap;
}

.guide-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.guide-tag-guide {
  background: rgba(0, 105, 177, 0.1);
  color: #0069B1;
}

.guide-tag-tips {
  background: rgba(255, 117, 0, 0.1);
  color: #FF7500;
}

.guide-tag-news {
  background: rgba(46, 204, 113, 0.1);
  color: #2e7d32;
}

.error {
  background: #ffebee;
  border-left: 4px solid #e74c3c;
  padding: 20px;
  border-radius: 8px;
  color: #c62828;
  display: none;
}

.ad-placeholder {
  background: #f8f9fa;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .ad-placeholder {
    margin: 8px 0;
    padding: 12px 20px;
  }
}

.ad-placeholder-text {
  font-size: 14px;
  font-weight: 600;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.ad-placeholder-small {
  padding: 15px;
}

.text-muted-sm {
  font-size: 0.75rem;
  color: #7f8c8d;
}

header.sticky-top .navbar {
  background-color: #e8e8e8 !important;
}

body.landing-page {
  background-color: #e8e8e8;
}

#pricing-section {
  background-color: #e8e8e8;
}
#pricing-section .table {
  --bs-table-bg: transparent;
}

#founder-section.founder-bg {
  background: url("../img/blog/founder-story_1.1.1.jpg") center 35%/cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
}
#founder-section.founder-bg::before, #founder-section.founder-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 0;
  pointer-events: none;
}
#founder-section.founder-bg::before {
  top: 0;
  height: 50%;
  background: linear-gradient(to bottom, #0A2349 0%, rgba(10, 35, 73, 0.7) 40%, transparent 100%);
}
#founder-section.founder-bg::after {
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgb(16.1445783133, 56.5060240964, 117.8554216867) 0%, rgba(16.1445783133, 56.5060240964, 117.8554216867, 0.7) 40%, transparent 100%);
}
#founder-section.founder-bg .container {
  position: relative;
  z-index: 1;
  margin-top: 12rem;
}
@media (max-width: 767px) {
  #founder-section.founder-bg {
    min-height: 500px;
  }
  #founder-section.founder-bg .container {
    margin-top: 6rem;
  }
}

body.landing-page .footer {
  background-color: #e8e8e8;
}

body.landing-page .footer {
  margin-top: 0;
}

.tooltip-inner {
  text-align: left !important;
  max-width: 280px;
}
.tooltip-inner .fbi-entry {
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
.tooltip-inner .fbi-solid {
  color: #2ecc71 !important;
}
.tooltip-inner .fbi-hollow {
  color: #7f8c8d !important;
}
.tooltip-inner .fbi-boost {
  color: #DAA520 !important;
}
.tooltip-inner .fbi-penalty {
  color: #e74c3c !important;
}

.species-tooltip {
  transition: background-color 0.15s ease;
}
.species-tooltip:hover {
  background-color: #f0f7ff !important;
}

.species-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background: white;
  border-radius: 6px;
  margin-bottom: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.species-item:hover {
  background: rgba(0, 105, 177, 0.04);
  border-color: #0069B1;
}

.species-item__rank {
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}
.species-item__rank img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.species-item__name {
  font-weight: 500;
  color: #0A2349;
  font-size: 11px;
}

.species-item__closed {
  background: #ffebee;
  color: #c62828;
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  margin-left: 6px;
}

.species-item__rating {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}
.species-item__rating--high {
  background: #e8f5e9;
  color: #27ae60;
}
.species-item__rating--moderate {
  background: #fff3e0;
  color: #f39c12;
}
.species-item__rating--low {
  background: #ffebee;
  color: #e74c3c;
}
.species-item__rating--closed {
  background: #f5f5f5;
  color: #999;
}

.species-tooltip-body {
  text-align: left;
  max-width: 250px;
}

.species-tooltip-explain {
  margin: 4px 0;
}

.species-tooltip-regs {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 4px;
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.85;
}

.species-score-bar {
  display: block;
  height: 4px !important;
  min-height: 4px;
  max-height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  flex: 1;
  min-width: 40px;
  align-self: center;
  box-sizing: content-box;
}

.species-score-bar__fill {
  display: block;
  height: 100%;
  transition: width 0.3s ease;
}

.species-chip {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}
.species-chip--up {
  background: #e8f5e9;
  color: #27ae60;
}
.species-chip--down {
  background: #fff3e0;
  color: #e65100;
}

.species-item__chips {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.species-item__detail {
  display: none;
  padding: 8px 0 4px;
  border-top: 1px solid #e0e0e0;
  margin-top: 6px;
}

.species-item--expanded .species-item__detail {
  display: block;
}

.species-item__explain {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 6px;
}

.species-item__regs {
  font-size: 11px;
  color: #7f8c8d;
  line-height: 1.3;
  margin: 0;
  padding-top: 6px;
  border-top: 1px dashed #e0e0e0;
  font-style: italic;
}

.rec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: white;
  border-radius: 6px;
  margin-bottom: 6px;
}
.rec-item:last-child {
  margin-bottom: 0;
}
.rec-item__rank {
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}
.rec-item__rank img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.rec-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rec-item__header {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.rec-item__name {
  font-weight: 600;
  color: #0A2349;
  font-size: 12px;
}
.rec-item__type {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;
}
.rec-item__type--live {
  background: #e8f5e9;
  color: #2e7d32;
}
.rec-item__type--artificial {
  background: #e3f2fd;
  color: #1565c0;
}
.rec-item__type--cut {
  background: #fff3e0;
  color: #e65100;
}
.rec-item__score {
  font-size: 11px;
  color: #7f8c8d;
  margin-left: auto;
}
.rec-item__why {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
  margin-top: 2px;
  display: none;
}
.rec-item--expanded .rec-item__why {
  display: block;
}
.rec-item--expanded .rig-specs {
  display: flex;
}
@media (max-width: 480px) {
  .rec-item {
    gap: 8px;
    padding: 6px 8px;
  }
  .rec-item__name {
    font-size: 11px;
  }
  .rec-item__why {
    font-size: 10px;
  }
  .rec-item__type {
    padding: 2px 6px;
    font-size: 9px;
  }
}

.info-card-bait .rec-item,
.info-card-rig .rec-item {
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.info-card-bait .rec-item:hover,
.info-card-rig .rec-item:hover {
  background: rgba(0, 105, 177, 0.04);
  border-color: #0069B1;
}

.rec-species-group {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7f8c8d;
  margin: 8px 0 4px;
  padding-bottom: 2px;
}
.rec-species-group:first-child {
  margin-top: 0;
}

.rec-skeleton {
  padding: 10px;
}
.rec-skeleton__line {
  height: 14px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f8f9fa 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: rec-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}
.rec-skeleton__line:last-child {
  margin-bottom: 0;
}
.rec-skeleton__line--short {
  width: 60%;
}
.rec-skeleton__line--medium {
  width: 80%;
}

@keyframes rec-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.rec-error {
  text-align: center;
  padding: 16px;
  color: #7f8c8d;
  font-size: 12px;
}
.rec-error__retry-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 16px;
  background: #0069B1;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  min-height: 44px;
}
.rec-error__retry-btn:hover {
  opacity: 0.9;
}

.card-expand-section {
  display: none;
}
.card-expand-section--open {
  display: block;
}

.card-expand-toggle {
  display: block;
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  background: transparent;
  border: 1px dashed #ccc;
  border-radius: 6px;
  color: #0069B1;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.card-expand-toggle:hover {
  background: rgba(0, 105, 177, 0.04);
  border-color: #0069B1;
}

.rig-specs {
  display: none;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 4px;
}
.rig-specs__item {
  font-size: 10px;
  color: #666;
}
.rig-specs__item strong {
  font-weight: 600;
  color: #555;
  text-transform: capitalize;
}

.fbi-trend {
  font-size: 1em;
  margin-left: 4px;
  font-weight: 600;
}
.fbi-trend--rising {
  color: #27ae60;
}
.fbi-trend--falling {
  color: #e74c3c;
}
.fbi-trend--stable {
  color: #95a5a6;
}

.brag-upload-zone {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fafafa;
  overflow: hidden;
}
.brag-upload-zone:hover {
  border-color: #0069B1;
  background: #e0eff9;
}
.brag-upload-zone.has-photo {
  padding: 0;
  border-style: solid;
  border-color: #e0e0e0;
}

.brag-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.brag-upload-placeholder {
  pointer-events: none;
}

.brag-upload-icon {
  font-size: 72px;
  margin-bottom: 16px;
}

.brag-upload-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.brag-upload-hint {
  font-size: 0.75rem;
  color: #7f8c8d;
  margin: 0;
}

.brag-photo-preview {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.brag-preview-container {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  flex: 1;
  min-height: 0;
}

#bragCanvas {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  flex: 1;
  min-width: 0;
}

.brag-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.brag-actions .btn-primary,
.brag-actions .btn-secondary {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .brag-preview-container {
    flex-direction: column;
  }
  #bragCanvas {
    height: auto;
    max-height: 60vh;
    flex: none;
  }
  .brag-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.brag-action-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.brag-action-sheet-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.brag-action-sheet-menu {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 14px 14px 0 0;
  padding: 8px 0;
  padding-bottom: env(safe-area-inset-bottom, 8px);
}

.brag-action-sheet-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.brag-action-sheet-btn:hover, .brag-action-sheet-btn:active {
  background: #f8f9fa;
}
.brag-action-sheet-btn.brag-action-sheet-cancel {
  color: #7f8c8d;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  margin-top: 4px;
}

.brag-action-sheet-icon {
  margin-right: 10px;
  font-size: 20px;
}

.skeleton-row td {
  padding: 12px 15px !important;
}

.skeleton-location-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f8f9fa 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.skeleton-title {
  width: 60%;
  height: 18px;
}

.skeleton-fbi {
  width: 80px;
  height: 22px;
  border-radius: 50px;
}

.skeleton-desc {
  width: 90%;
  height: 12px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.loading-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: loading-pulse 1.2s ease-in-out infinite;
  vertical-align: middle;
}
.loading-pulse::before, .loading-pulse::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  position: relative;
}
.loading-pulse::before {
  left: 5px;
  animation: loading-pulse 1.2s ease-in-out 0.2s infinite;
}
.loading-pulse::after {
  left: 10px;
  animation: loading-pulse 1.2s ease-in-out 0.4s infinite;
}
.app-header-meta .loading-pulse {
  background: rgba(255, 255, 255, 0.7);
}
.app-header-meta .loading-pulse::before, .app-header-meta .loading-pulse::after {
  background: rgba(255, 255, 255, 0.7);
}

@keyframes loading-pulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.pro-gate {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  cursor: pointer;
}
.pro-gate__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pro-gate__icon {
  width: 20px;
  height: 20px;
}
.pro-gate__text {
  font-size: 11px;
  font-weight: 600;
  color: #666;
}
.pro-gate__cta {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #FF7500;
  padding: 4px 12px;
  border-radius: 12px;
}
.pro-gate--forecast {
  border-radius: 0 0 8px 8px;
  margin-bottom: 0;
}
.pro-gate--forecast .pro-gate__overlay {
  flex-direction: row;
  gap: 8px;
  padding: 8px 16px;
}

[data-theme=dark] .pro-gate__overlay {
  background: rgba(30, 30, 30, 0.6);
}

.pro-gate-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: rgba(255, 165, 0, 0.06);
  cursor: pointer;
}
.pro-gate-row__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.pro-gate-row__text {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}
.pro-gate-row__spacer {
  flex: 1;
  border-bottom: 1px solid rgba(150, 150, 150, 0.4);
  min-width: 20px;
}
.pro-gate-row__cta {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #FF7500;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

[data-theme=dark] .pro-gate-row {
  background: rgba(255, 165, 0, 0.08);
}
[data-theme=dark] .pro-gate-row__spacer {
  border-bottom-color: rgba(200, 200, 200, 0.2);
}

.upgrade-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.upgrade-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.upgrade-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.upgrade-modal-header h3 {
  margin: 0;
  color: #333333;
  font-size: 18px;
}

.upgrade-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #7f8c8d;
  cursor: pointer;
  padding: 0;
  width: auto;
  max-width: none;
  margin: 0;
}
.upgrade-modal-close:hover {
  color: #333333;
  background: none;
}

.upgrade-modal-body {
  padding: 20px;
  max-height: calc(80vh - 80px);
  overflow-y: auto;
}

.upgrade-modal-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.upgrade-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .upgrade-cards {
    grid-template-columns: 1fr;
  }
}

.upgrade-card {
  position: relative;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  text-align: center;
  transition: all 0.2s ease;
}
.upgrade-card:hover {
  border-color: #FF7500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.upgrade-card--recommended {
  border-color: #FF7500;
  background: rgba(255, 117, 0, 0.03);
}

.upgrade-card-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #FF7500;
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.625rem;
  font-weight: 700;
}

.upgrade-card-price {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin: 12px 0;
}
.upgrade-card-price span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.upgrade-card-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px;
  background: #FF7500;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.upgrade-card-btn:hover {
  background: rgb(204, 93.6, 0);
}
.upgrade-card-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
}

[data-theme=dark] .upgrade-modal-content {
  background: #1a1a1a;
}
[data-theme=dark] .upgrade-modal-content h3 {
  color: #fff;
}
[data-theme=dark] .upgrade-modal-header {
  border-bottom-color: #333;
}
[data-theme=dark] .upgrade-modal-close {
  color: #94a3b8;
}
[data-theme=dark] .upgrade-modal-close:hover {
  color: #fff;
}
[data-theme=dark] .upgrade-modal-subtitle {
  color: #94a3b8;
}
[data-theme=dark] .upgrade-card {
  background: #222;
  border-color: #444;
}
[data-theme=dark] .upgrade-card:hover {
  border-color: #FF7500;
}
[data-theme=dark] .upgrade-card--recommended {
  background: rgba(255, 117, 0, 0.08);
  border-color: #FF7500;
}
[data-theme=dark] .upgrade-card-price {
  color: #fff;
}
[data-theme=dark] .upgrade-card-price span {
  color: #94a3b8;
}

.settings-subscription-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
@media (max-width: 480px) {
  .settings-subscription-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.settings-subscription-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.settings-subscription-tier {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
}

.settings-subscription-details {
  font-size: 0.75rem;
  color: #666;
}

.settings-manage-btn--upgrade {
  background: #FF7500;
}
.settings-manage-btn--upgrade:hover {
  background: rgb(204, 93.6, 0);
}

[data-theme=dark] .settings-subscription-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: #444;
}
[data-theme=dark] .settings-subscription-tier {
  color: #fff;
}
[data-theme=dark] .settings-subscription-details {
  color: #94a3b8;
}

.app-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 14px 20px;
  background: #555;
  color: white;
  border-radius: 8px;
  font-size: 0.875rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  max-width: 400px;
  word-wrap: break-word;
}
.app-toast.show {
  opacity: 1;
  pointer-events: auto;
}
.app-toast--success {
  background: #2ecc71;
}
.app-toast--error {
  background: #e74c3c;
}
.app-toast--info {
  background: #3498db;
}
.app-toast--warning {
  background: #f39c12;
}
@media (max-width: 480px) {
  .app-toast {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (display-mode: standalone) {
  body.app-body {
    padding-top: env(safe-area-inset-top, 10px);
  }
  .container {
    border-radius: 0;
    min-height: 100vh;
  }
}
.admin-config-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-config-group label {
  font-weight: 600;
  font-size: 0.75rem;
}
.admin-config-group input[type=number] {
  width: 120px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.75rem;
}

.admin-config-hint {
  font-size: 0.625rem;
  color: #7f8c8d;
}

.admin-config-status {
  margin-top: 8px;
  font-size: 0.75rem;
  min-height: 20px;
  transition: opacity 0.3s;
}
.admin-config-status--success {
  color: #2ecc71;
}
.admin-config-status--error {
  color: #e74c3c;
}

/*# sourceMappingURL=theme.css.map */
