/* Default styles */

/* Set default font size and family */
body {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Set max width for container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Style for table */
  .table-wrap {
    overflow-x: auto;
  }
  
  .table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .table th,
  .table td {
    padding: 1rem;
    text-align: center;
  }
  
  .table th {
    font-weight: 500;
    background-color: #f1f1f1;
  }
  
  .table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6;
  }
  
  .table-bordered th {
    border-bottom-width: 2px;
  }
  
  .table-bordered td {
    border-top-width: 2px;
  }
  
  /* Style for buttons */
  .btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .btn:hover {
    background-color: #0069d9;
  }
  
  /* Media queries for responsiveness */
  
  /* Adjust font size and table padding for smaller screens */
  @media screen and (max-width: 767px) {
    body {
      font-size: 14px;
    }
  
    .table th,
    .table td {
      padding: 0.5rem;
    }
  }
  
  /* Adjust column width and button size for smaller screens */
  @media screen and (max-width: 575px) {
    .table th,
    .table td {
      display: block;
      width: 100%;
      text-align: left;
    }
  
    .table td:before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
  
    .btn {
      font-size: 14px;
      padding: 0.25rem 0.5rem;
    }
  }
  