 /* Default state (Light Mode) */
@media print {
          h3 {page-break-before: always;}
  }

body {
    background-color: #f4f4f4; /* Light background */
    color: #333; /* Dark text */
    transition: background-color 0.5s ease; /* Smooth transition effect */
}

  table, th, td {
    border: 1px solid green;
    border-radius: 10px;   
  }

  td {
    vertical-align: top; /* aligns the text to the top of the cell */    
    border-color:transparent; 
  }

  h3 {color:green;}
  h2 {color:green;}
  #p01{color:red;}
  #p02{color:green;}

  .divx {
  width: 10px;
  height: 10px;
  padding: 1px;
  border: 1px solid gray;
  margin: 0;
  }

  sup { 
  color: green; 
  font-size: 14px;
  }

  b { 
  color:green; 
  font-size: 14px;
  }              

  ol { 
  color:green; 
  }

/* Dark Mode state */
.dark-mode {
    background-color: #222; /* Dark background */
    color: #fff; /* Light text */

  table, th, td {
    border: 1px solid #FFF4A3;
    border-radius: 10px;
  }
  
  td {
    vertical-align: top; /* aligns the text to the top of the cell */    
    border-color:transparent; 
  }

h3 {
  color:#FFF4A3;
  }
h2 {
  color:green;
  }
#p01{
  color:red;
  }
#p02{
  color:#FFF4A3;
  }

.divx {
  width: 10px;
  height: 10px;
  padding: 1px;
  border: 1px solid gray;
  margin: 0;
  }

sup { 
  color: orange;" <!--#FFF4A3-->
  font-size: 14px;
  }

a:link {
  color: white; 
  background-color: transparent; 
  text-decoration: none;
  }

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
  }

a:hover {
  color: #FFF4A3;
  background-color: transparent;
  text-decoration: underline;
  }

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
  }

ol { 
  color:#FFF4A3; 
  }  

.hDiv {
  background-color: black;
  color: white;
  }


}

button {
    padding: 10px 15px;
    cursor: pointer;
}