
body {
  font-family: "Lato", sans-serif;
}

.banner {
    width : 100%;
    height : 80px;
    left: 0;
    background-color: lightblue;
    text-align: center;
    line-height: 80px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
    border: 1px solid #555;
  }
  
  li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
  }
  
  li {
    text-align: center;
    border-bottom: 1px solid #555;
  }
  
  li:last-child {
    border-bottom: none;
  }
  
  li a.active {
    background-color: #4CAF50;
    color: white;
  }
  
  li a:hover:not(.active) {
    background-color: #555;
    color: white;
  }

  .selected{
    background-color: #4CAF50;
  }

  #customers, #checkindata {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  #customers td, #customers th , #checkindata td, #checkindata th  {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  #customers tr:nth-child(even){background-color: #f2f2f2;}
  #checkindata tr:nth-child(even){background-color: #f2f2f2;}
  
  #customers tr:hover {background-color: #ddd;}
  #checkindata tr:hover {background-color: #ddd;}

  #customers th, #checkindata th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
  }

  .button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    margin-right:20%;
  }

  .forminput {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  .formbutton {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  
  .container {
    margin-top:50px;
    width: 40%;
    margin-left:30%;
  }

  .patientFormData_table , .patientFormData_table th, .patientFormData_table td {
    border: 1px solid black;
  }

  .patientFormData_table td ul{
    list-style-type: square;
    margin: 30px;
    padding: 0;
    width: 200px;
    background-color: #ffffff;
    border: none;
  }
  .patientFormData_table td ul li{
    text-align: left;
    border-bottom: none;
  }
  
  .i-circle {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    line-height: 18px; /* adjusted line-height */
    width: 18px; /* smaller width */
    height: 18px; /* smaller height */
    text-align: center;
}