/* responsive.css - Desktop layout constraint for all screens */

@media (min-width: 481px) {
  body {
    background-color: #EAEAEA; /* plain grey outside */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .app-wrapper {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    /* The body is centered, so this wrapper will be centered on screen */
  }
}
