body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff; /* White text for readability on dark background */
    background: radial-gradient(circle, #382E57, #1A1A1A, #000000);
    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 {
  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 */
  }
}