
    body{
      margin:0;
      height:100vh;
      display:flex;
      justify-content:center;
      align-items:center;
      background:#215F03;
	  background-image: url('/images/bg.gif');
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-position: center;
      font-family:'Inter',sans-serif;
    }
    .wrapper{
      display: flex;
      align-items:center;
      gap:60px;
    }
    .logo{
      height:140px;
      width:auto;
    }
	.top-div {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  background-color: #000000;
	  padding: 0px;
	  /* z-index: 1000; /* Ensures it stays on top of other content */
	}
	.content-table {
	  background-color: #FFFFFF;
	  width: 100%;
	  overflow-x: auto;
	}
	.content-table td {
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 20px;
  }
	.bottom-div {
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  width: 100%; /* To make it span the full width */
	  background-color: #f0f0f0; /* Example background */
	  padding: 10px; /* Example padding */
	  z-index: 1000; /* Ensures it stays on top of other content */
	}
	table {
	  width: 100%;
	  border-collapse: collapse;
	}
	
	.pad {
	  padding: 10px;
	  /* height: 80px; */
	}
	
	.top-align {
	  vertical-align: top;
	}
	
	.middle-align {
	  vertical-align: middle;
	}
	
	.bottom-align {
	  vertical-align: bottom;
	}
