    body {
      font-family: Arial, sans-serif;
      background-color: #f3f3f3;
      margin: 0;
      padding: 0;
    }

    .top-ribbon {
      width: 100vw;
      height: 5vh;
      background-color: #ff5722;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
    }

    .top-ribbon h2 {
      margin: 0;
      font-size: 20px;
    }

    .top-ribbon select {
      padding: 8px 12px;
      margin-right: 40px;
      font-size: 14px;
      border-radius: 4px;
      border: none;
      outline: none;
    }

    .container {
      width: 95vw;
      height: 90vh;
      margin: 0 auto 0 auto;
      background: white;
      border-radius: 10px;
    /*  padding: 30px;*/
      text-align: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
              overflow-x: auto;
      white-space: nowrap;      
    }

    h1 {
      color: #ff5722;
      margin-bottom: 20px;
    }

    .order-number {
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .status {
      font-size: 1.2rem;
      font-weight: bold;
      color: #ffffff;
      background-color: #ff9800; /* In Progress */
      padding: 10px 20px;
      border-radius: 5px;
      display: inline-block;
    }

    .status.ready {
      background-color: #4caf50; /* Ready */
    }
    .status.part {
      background-color: #0044FF;
      background: linear-gradient(90deg,rgba(255, 0, 0, 1) 0%, rgba(0, 255, 0, 1) 100%);
    }    
    #ordersContainer {
        width: 100%;
        
        display: grid;
        grid-template-columns: repeat(3, 1fr);

    }
    #ordersContainer div.order {
        width: 100%;
        min-height: 12vh;
        height: auto;
        border: 1px solid #f3f3f3;
        border-radius: 5px;
        margin-top: 5px;
        flex:1;
    }
    .order-number {
        font-size: 2.5rem;
    }