/* Q-and-A.css - Simple Table Styling */

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 20px;
    line-height: 1.6;
  }
  
  h1, h2 {
    color: #005c99;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin-top: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    background-color: #e0f0ff;
    font-weight: bold;
  }
  
  tr:hover {
    background-color: #f1f1f1;
  }
  
  footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
  }
  