/* glazieros-app/assets/css/fullscreen.css */

/* Make the entire app stretch to the viewport */
html, body, #root {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Wrapper for your React pricing app */
.pricing-app-fullscreen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Grid layout for your pricing tool items */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

/* Section spacing & headers */
.pricing-section {
  margin-bottom: 2rem;
}
.pricing-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Form controls */
input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0.25rem;
}

/* Buttons */
button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #007bff;
  color: white;
  font-weight: bold;
}
