body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  .tile {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    width: 90vw;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
  }
  
  .top-row { /* New class for the top row */
    display: flex;
    justify-content: space-between; /* Push buttons to the sides */
    align-items: center; /* Vertically align items in the row */
    width: 100%; 
  }
  
  .button {
    font-size: 30px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #eee;
  }
  
  .counter {
    font-size: 40px;
    text-align: center;
    flex-grow: 1; /* Allow counter to grow and take up space */
    margin: 0 20px; /* Add some margin left and right */
    color: grey;
  }
  
  .counter.active {
    color: black;
  }
  
  .label {
    text-align: center;
    font-size: 18px;
    margin-top: 10px; /* Add margin to separate from the top row */
  }

  .floating-link {
    display: block;         /* Makes the link a block-level element */
    position: fixed;        /* Fixes the link to the viewport */
    bottom: 20px;           /* Adjust distance from the bottom */
    left: 50%;              /* Positions the link in the horizontal center */
    transform: translateX(-50%); /* Centers the link perfectly */
    padding: 10px 20px;     /* Adds padding around the text */
    background-color: #f0f0f0; /* Example background color */
    border: 1px solid #ccc;  /* Example border */
    text-decoration: none;  /* Removes default link underline */
    color: #333;            /* Example text color */
  }