/* style.css */
  
 table {
	      width: 100%;
	      border-collapse: collapse;
	      font-family: Arial, sans-serif;
	      margin-top: 0px;
	    }

	    th, td {
	      border: 1px solid #999;
	      padding: 10px;
	      text-align: left;

	      }

     th {
	      background-color: #f2f2f2;
	      font-weight: bold;
	    }

	    tr:nth-child(even) {
	      background-color: #f9f9f9;
	    }

	    tr:hover {
	      background-color: #e0f7fa;
    }
