.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin:0 auto;
  }
  /* This code seems to be overriden by the @media code below. Not necessary.
  .left-column, .right-column {
    flex: 0 0 auto;
    min-height: 100px; 
  }
  
  .left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .main-content {
    flex: 5;
    display: flex;
    flex-direction: column;
  }
  */


/* This code is maybe for a table? It doesn't seem to do anything. It also exists in table.css
  .top-row {
    display:flex;
    flex: 1;
  }
  
  .top-row > * {
    align-self: flex-end;
  }
  
  .bottom-row {
    flex: 9;
  }
*/
  
  /* Desktop layout */
  @media screen and (min-width: 768px) {
    .container {
      flex-direction: row;
    }
  
  }
  
  
  
  
  /* styles for the table */
  
  
  
  
  .blog-styled-table {
    border-collapse: separate; /* Ensures that borders of table cells are separate */
    border-spacing: 0; /* Sets the space between the borders of adjacent cells to zero */
    margin: 1rem 1rem; /* Removes any margin around the table */
    font-size: 1.1em; /* Sets the font size for the text inside the table to 1.1 times the base font size */
    width:auto;
    min-width:30rem;
    max-width: 95%; /* Makes the table take up the full width of its container */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Adds a shadow effect around the table */
    table-layout: auto; /* Allows columns to adjust width based on content */
  }
  
  .blog-styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
  }
  
  .blog-styled-table th,
  .blog-styled-table td {
    text-align: left;
    padding: 0.75em 0.75em; /* Reduced overall padding */
    border-bottom: 0.0625rem solid #dddddd;
  }
  
  
  .blog-styled-table tbody tr:last-of-type td {
    border-bottom: 2px solid #009879;
  }
  
  .blog-styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
  }
  
  .blog-styled-table td span {
    margin-right: 5px; /* Adds space after each span */
  }
  
  .blog-styled-table td span:last-child {
    margin-right: 0; /* Removes margin from the last span to avoid extra space */
  }
  
 
  
  .key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    min-width: 30px;
    min-height: 30px; /* Add this line */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #555;
    position: relative;
  }
  
  .key::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
    border-radius: 3px;
  }
  