
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to bottom right, #dbeafe, #ffffff);
      padding: 2rem;
      min-height: 100vh;
    }
.card.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

    header {
      margin-bottom: .25rem;
    }

    .hero-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #1f2937;
      border-radius: 1rem;
      padding: 1rem;
      color: white;
    }

    .hero-left {
      display: flex;
      align-items: center;
    }

    .banner-image {
      border-radius: 0.5rem;
      max-width: 22vw;
      min-width: 60px;
      margin-right: 1rem;
      height: auto;
    }

    .youtube-icon {
      margin-left: 1rem;
      border-radius: 0.5rem;
      max-width: 14vw;
      min-width: 60px;
      margin-right: 1rem;
      height: auto;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      margin: 0.5rem 0;
    }

    .hero-text p {
      font-size: 1.25rem;
      margin: 0;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .card {
      background-color: #1e293b;
      color: #f8fafc;
      border-radius: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
    }

    .card h2 {
      color: #38bdf8;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin: 0.75rem 0;
      font-size: 1.1rem;
    }

    .info-item i {
      margin-right: 0.6rem;
      color: #38bdf8;
      min-width: 24px;
      text-align: center;
    }

    .label {
      color: #94a3b8;
      min-width: 110px;
      display: inline-block;
    }

    .value {
      color: #f8fafc;
    }

    .status-active {
      color: #4ade80;
      font-weight: bold;
    }

    .status-inactive {
      color: #f87171;
      font-weight: bold;
    }


    .weather-detail {
      display: flex;
      justify-content: space-between;
      margin: 0.5rem 0;
      font-size: 1rem;
    }

    .weather-detail span:first-child {
      font-weight: bold;
      width: 50%;
    }

    .temperature { color: #ff4c4c; }
    .humidity { color: #3399ff; }
    .wind { color: #4CAF50; }

    footer {
      margin-top: 3rem;
      text-align: center;
      font-size: 0.875rem;
      color: #6b7280;
    }

    #pota {
      width: 800px;
      height: 1250px;
      border: none;
    }

    #pota > table {
      width: 100% !important;
    }

    /* Responsive adjustments */
    @media (max-width: 900px) {
      #pota {
        width: 100% !important;
        min-width: 0 !important;
        height: 900px !important;
      }
    }

    @media (max-width: 600px) {
      #pota {
        width: 100vw !important;
        height: 600px !important;
      }

      .banner-image {
        display: none;
      }

      .youtube-icon {
        width: 5rem;
        min-width: 40px;
      }

      .hero-text h1,
      .hero-text p {
        font-size: clamp(14px, 5vw, 2.5rem);
      }
    }

    @media (max-width: 400px) {
      #pota {
        width: 100vw !important;
        height: 400px !important;
      }
    }

    .pota-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pota-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pota-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.pota-info h3 {
  margin: 0;
  font-size: 1.5rem;
}

.pota-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.pota-awards ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.pota-awards li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.award-badge {
  background: linear-gradient(135deg, #e8f0fe, #ffffff);
  border: 1px solid #ccc;
  padding: 0.75rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.award-badge:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #dbe9ff, #f9f9f9);
}

.award-badge h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #333;
}

.award-badge .date {
  font-size: 0.8rem;
  color: #666;
}
.award-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.pota-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.pota-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.pota-stats p {
  margin: 0.25rem 0;
}

.recent-activity {
  padding: 1.5rem;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00bfff;
}

.pill {
  background-color:#043c4f9b;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* max-width: 600px; */
  width: 100%;
  transition: transform 0.2s;
}

.pill-item.phone {
  background-color: #2e8b57;
}

.pill-item.data {
  background-color: #e67300;
}

.pill-item.cw {
  background-color: #b22222;
}

.pill-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  flex: 1 1 200px;
  min-width: 100px;
  color: #fff;
}

.pill-item strong {
  color: #ccc;
}
.band-160m { background-color: #4b0082; } /* deep purple */
.band-80m  { background-color: #483d8b; } /* dark slate blue */
.band-60m  { background-color: #556b2f; } /* olive drab */
.band-40m  { background-color: #2f4f4f; } /* dark slate gray */
.band-30m  { background-color: #8b0000; } /* dark red */
.band-20m  { background-color: #1e90ff; } /* dodger blue */
.band-17m  { background-color: #20b2aa; } /* light sea green */
.band-15m  { background-color: #daa520; } /* goldenrod */
.band-12m  { background-color: #cd5c5c; } /* indian red */
.band-10m  { background-color: #ff8c00; } /* dark orange */
.band-6m   { background-color: #4682b4; } /* steel blue */
.pill-item[class*="band-"] {
  border-left: 4px solid #fff3;
  font-weight: 500;
}
.pill-date {
  background-color: #0e2951; /* subtle gray */
}

.pill-callsign {
  background-color: #0465a5; /* strong blue */
  font-weight: bold;
  text-transform: uppercase;
}
.pota-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 2fr));
  gap: 1.25rem;
  padding: 1.5rem;
}
/* .stat-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #1a1a1a;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
} */

/* .stat-card i {
  font-size: 1.75rem;
  color: #00bfff;
  margin-right: 1rem;
  flex-shrink: 0;
} */

.stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* This centers the content horizontally */
  text-align: center;  /* Optional, keeps text centered */
}



.stat-value small {
  font-size: 0.85rem;
  color: #bbb;
}

.stat-card i {
  font-size: 1.5rem;
  color: #00bfff;
  margin-top: 4px;
}

.stat-card {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.stat-card i {
  font-size: 1.75rem;
  color: #00bfff;
  flex-shrink: 0;
}
.stat-value {
  word-break: break-word;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: normal;
  display: block;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: #ccc;
}
.stat-card i.fa-trophy {
  color: gold;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 5px gold; }
  50% { text-shadow: 0 0 15px gold; }
}

@media (max-width: 600px) {
  .pota-stats-grid {
    grid-template-columns: 1fr;
  }
  .pill {
    flex-direction: column;
    width: 100%;
  }

  .pill-item {
    flex: 1 1 100%;
  }
}

/* Existing menu styles... */
/* General menu styling */
.menu-bar {
  background-color: #1b2530;
  border-radius: 10px;
  margin-bottom: 20px;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 10px 0;
}

.menu-items li {
  position: relative;
}

.menu-items a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s;
}

.menu-items a:hover {
  background-color: #293846;
}

/* Submenu dropdown */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1b2530;
  border-radius: 8px;
  min-width: 180px;
  z-index: 1000;
}

.submenu a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.dropdown:hover .submenu {
  display: block;
}
.menu-logo{
  display: none;
  color:white;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .menu-logo{
    display: block;
  }

  .menu-items {
    flex-direction: column;
    width: 100%;
    display: none; /* Hidden by default */
  }

  .menu-items.active {
    display: flex;
  }

  .submenu {
    position: static;
  }

  .dropdown:hover .submenu {
    display: none;
  }

  .dropdown.open .submenu {
    display: block;
  }
}
