/* waiver-styles.css */
@media (min-width: 768px) {
  .google-form-container {
    position: relative;
    width: 100%;
    height: 1200px; /* Adjust based on your form's height */
    padding: 0;
  }

  .google-form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .nav-link-custom {
    display: none; /* Hide the logo navigation on mobile */
  }
  
  .mobile-back-button {
    display: block;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    background: #786785;
    color: white;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
  }

  .google-form-container {
    padding: 0;
  }

  .google-form-container iframe {
    width: 100%;
    height: 100vh;
    border: none;
    margin-top: -60px; /* Adjust to remove extra space at top */
  }
}

