*{
    padding: 0%;
    margin: 0%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    overflow: scroll;
    background-color: #f2f2f2 !important;
    
}


/* table styling starts here */

  table {
    padding:0 !important;
    margin:0;
    border-collapse: collapse;
    width: 100%;
    
  }

  td,
  th {
    border: 1px solid #dddddd;
    text-align: left;
  }
  

  tr:first-child{
    background: red;
    color:white;
    
  }
  td:nth-child(n){
    padding:0.2em;
    text-align: center;
    border: 1px solid black;
  }
  tr:nth-child(n){
    
    
    border: 1px solid black;
    padding:0.3em;
  }


  @media (max-width:800px) {
    table{
      font-size: 0.6em;
    }
    
  }
  

  /* tables styling end here */

  


 

.card {
  display: flex;
  width: 300px;
  padding: 20px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 20px !important;
  box-shadow: 5ch !important;
  
  
  /* margin: 0 auto; */
  gap: 1em;
}
/* PDF icon style */
.pdf-icon {
  font-size: 40px;
  color: #ff0000;
  margin-bottom: 10px;
}
/* Second line style */
.bold {
  font-weight: bold;
  font-size: 20px;
}
/* Fourth line style */
.button {
  display: inline-block;
  padding: 10px 20px;
  bottom: 0 !important;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #cc0000;
}

@media (max-width:800px) {
  .card{
    
    width: 14rem;
  }
  
}