.parent {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 50%);
}

.child {
    width: 100%;
}


table {
    /*margin: 0 auto; /* Center the table */
    border-collapse: collapse; /* Ensures borders don’t overlap or extend */
    width: 100%; /* Let the table size to its content */
}

thead th {
    background-color: #5ba7e4; /* Matches the blue background in your screenshot */
    color: white; /* Improves contrast */
    padding: 8px; /* Adjust padding for better spacing */
    text-align: center; /* Center the header text */
}

/* Ensure the table cells don’t stretch unnecessarily */
td, th {
    box-sizing: border-box; /* Prevents padding from increasing the cell size */
}
  
.panel-body {
    display: flex;
    flex-direction: column; /* Stack the image and table vertically */
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 15px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col-md-12 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  
  .logo-container img {
    margin-bottom: 10px;
  }
  
  .logo-container h2 {
    text-align: center;
    margin: 0;
  }