/* Stripe Pricing Table Overrides */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff; /* White text for readability on dark background */
    background: radial-gradient(circle, #1A1A1A, #1A1A1A, #1A1A1A);
    background-size: 100%; /* Large size to allow for the 'movement' */
    /* animation: backgroundShift 5s ease infinite; Adjust timing as needed */
    overflow-x: hidden; /* Prevent horizontal scroll */
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.navbar-nav {
    margin: 0 auto; /* Centers the <ul> horizontally */
    display: flex;
    justify-content: center; /* Aligns items in the center horizontally */
    align-items: center; /* Aligns items vertically in the center */
  }
  .collapse.navbar-collapse {
    flex-grow: 1; /* Ensures this div expands and takes up available space */
}

 
/* Navbar Styles */
.navbar {
    margin-top: 2%;
    background-color: #262527; /* Dark background for navbar */
    padding: 1rem 1.5rem; /* Add padding to navbar */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    width: 80%;
  }
  
  
  /* Google Sign-In Button */
  .gsi-material-button {
    background-color: white; /* White background for Google sign-in */
    border: none;
    padding: 10px 20px;
    border-radius: 15px; /* Rounded corners */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  
  .gsi-material-button:hover {
    background-color: #f8f8f8; /* Light grey on hover */
  }
  
  .gsi-material-button .gsi-material-button-icon svg {
    height: 20px;
    margin-right: 8px;
  }
  
  .gsi-material-button .gsi-material-button-contents {
    color: black; /* Black text for Google sign-in */
    font-weight: 500;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        gap: 10px; /* Space between items when stacked */
    }
    
    .btn-pricing, .gsi-material-button {
        margin-right: 0;
        margin-bottom: 10px; /* Add spacing between buttons */
    }
}

/* Styles for Pricing Table Overlay */
.pricing-table-wrapper {
  position: relative; /* Needed for absolute positioning of the overlay */
  display: block; /* Or inline-block, depending on layout */
}

#pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Fully transparent */
  cursor: pointer; /* Indicate it's clickable */
  z-index: 10; /* Ensure it's above the Stripe table */
}