.card {
    border: 1px solid #e0e0e0;
    padding: 16px;
    margin: 16px 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2px;
}

.placard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.placard h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.placard p, .placard ol {
    margin: 2px 0;
    font-size: 16px;
}

.placard ol li {
    margin: 8px 0;
    margin-top: -20px;
}

.button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;        /* Rounded corners */
  }

  .button1 {
    background-color: #f44336;
    /* Red */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;        /* Rounded corners */
  }
  .button2 {
    background-color: #366cf4;
    /* Soft Blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
  }
  .button3 {
    background-color: #008CBA;
    /* Green */
    border: none;
    color: white;
    padding: 2px 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 2px 1px;
    cursor: pointer;
    top: 1;
    right: 0;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Creates as many columns as can fit, each at least 300px wide */
    gap: 0px; /* Adds space between the cards */
    padding: 20px; /* Padding around the grid */
  }
  
  .card.placard {
    border: 1px solid #ccc; /* Optional: adds a border around each card */
    padding: 10px; /* Padding inside each card */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds a shadow for better visibility */
  }
  
  @media (max-width: 600px) {
    .grid-container {
      grid-template-columns: 1fr; /* On smaller screens, use one column */
    }
  }

  .button-container {
    display: flex; /* Establishes a flex container */
    justify-content: space-between; /* Distributes space between the buttons */
    width: 100%; /* Sets the width of the container to full width */
  }
  
  .button-container button {
    flex-grow: 1; /* Allows each button to grow and fill the space */
    margin: 10px; /* Adds margin around each button */
  }
  
  
