/* Layout styles */
.app-container {
  position: relative;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: #d9d9d9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* For desktop, limit the width to create a mobile-like experience */
/*@media (min-width: 768px) {
  .app-container {
    max-width: 640px;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
}*/

.app-content {
  flex: 1;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
