  :root {
    --bs-primary: #5600ea; /* geodb.io purple */
    --bs-secondary: #26a69a; /* geodb.io teal */
    --bs-font-sans-serif: 'Roboto', sans-serif;
  }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  main {
    flex: 1 0 auto;
  }

  @media (max-width: 768px) {
    main .content-wrapper {
      padding-top: 1rem; /* Add space on mobile */
    }
  }

  .hero-bg {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  .btn-primary:hover {
    background-color: #4500b8; /* Darker purple */
    border-color: #4500b8;
  }
  .btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
  }
  .btn-secondary:hover {
    background-color: #1d7a70; /* Darker teal */
    border-color: #1d7a70;
  }

  footer {
    flex-shrink: 0;
    width: 100%;
  }
  .navbar {
    margin-bottom: 0px;
    padding: 0px, 0px, 0px, 0px;
  }
  .navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .navbar-custom .navbar-brand {
    margin-left: 1rem; /* Consistent left spacing */
  }

  .navbar-nav-container {
    width: 100%;
  }

  .navbar-nav-container .navbar-nav {
    padding-right: 0; /* Remove excessive right padding */
  }
  .navbar-start {
    text-align: center;
  } 

  .navbar-custom {
    padding: 0.5rem 0; /* Add slight vertical padding */
  }

  .navbar-toggler {
    padding: 0rem;
    font-size: 1rem;
    margin-bottom:2px;
  }

  .nav-link {
    font-weight:  700;
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
  }


  .btn-light.dropdown-toggle {
    border-radius: 0.5rem;
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
  }

  .btn-light.dropdown-toggle:hover {
    background-color: var(--bs-primary);
    color: white;
  }

   .joon {
    text-decoration: underline; 
    text-underline-offset:  8px;
    color: #4861df;
  }

  nav a:hover {
    text-decoration: underline; 
    text-underline-offset:  8px;
    color: #4861df !important;
  }
  .btn-primary {
    outline:  #4861df; !important;
    background-color: #4861df;
  }
  .btn-outline-primary {
    outline:  #4861df; !important;
    color: #4861df !important;
  }
  .user_welcome {
    font-weight:  700;
    font-size: 1.5rem;
    font-family: "Open Sans", sans-serif;
    color: #4861df;
  }

  .account-card {
    border-left: 4px solid var(--bs-primary); /* Purple border */
    transition: box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
  }
  .account-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Hover effect */
  }
  .section-header {
    background-color: #007bff; /* Solid blue - AdminLTE style */
    color: white;
    padding: 1rem;
    text-align: center;
    text-transform: capitalize; /* Moved from inline style */
  }
  .section-body {
    background: #f8f9fa; /* Subtle gray background */
    padding: 1.5rem;
  }
  .btn-purple {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
  }
  .btn-purple:hover {
    background-color: #4500b8; /* Darker purple */
    border-color: #4500b8;
  }
  .btn-teal {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: white;
  }
  .btn-teal:hover {
    background-color: #1d7d74; /* Darker teal */
    border-color: #1d7d74;
  }
  .list-group-item:hover {
    background-color: #e8f0f2; /* Light teal-gray on hover */
    transition: background-color 0.2s ease;
  }
  .list-group-item a {
    color: #333;
  }
  .list-group-item a:hover {
    color: var(--bs-primary); /* Purple on hover */
    text-decoration: none;
  }
  .no-content {
    text-align: center;
    color: #6c757d; /* Muted gray */
    padding: 1rem;
  }
  .no-content i {
    color: var(--bs-primary); /* Purple icon */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
/* Center Pricing Cards */
.pricing-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the cards horizontally */
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center; /* Ensures each card is centered within its column */
  max-width: 350px; /* Optional: Set a max-width for consistency */
  margin: 0 auto; /* Centers the wrapper within the column */
}

/* Adjust card width and spacing */
.pricing-card {
  width: 100%; /* Ensures the card takes up the full width of the wrapper */
  max-width: 300px; /* Optional: Limits card width for consistency */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .pricing-card-wrapper {
      flex: 0 0 33.333333%; /* Ensures three cards per row on medium screens and up */
      max-width: 33.333333%;
  }
}

@media (max-width: 767.98px) {
  .pricing-card-wrapper {
      flex: 0 0 50%; /* Two cards per row on small screens */
      max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .pricing-card-wrapper {
      flex: 0 0 100%; /* One card per row on extra small screens */
      max-width: 100%;
  }
}