* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* HEADER */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: green;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
      color: #00ffcc;
    }

    nav {
      display: flex;
      gap: 15px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }

    /* MENU BUTTON */
    .menu-btn {
      display: none;
      font-size: 22px;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      flex: 1;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 3px;
	  border : 2px solid red;
    }
footer {
      height: 60px;
      text-align: center;
      padding: 12px;
      background: green;
      font-size: 18px;
	  color : white;
    }
	.table-container{
    width: 100%;
    overflow-x: auto; 
}
table{
	margin-top: 20px;
    border-collapse: collapse;
    text-align: left;
    width: 90%;
    margin-left: auto;   /* 🔥 change */
    margin-right: auto;  /* 🔥 add */
}
table, td, th{
	border: 2px solid green;
}
td, th{
	padding: 10px;
}
tr:nth-child(even){
	background: #f2f2f2;
}
label{
 height:30px;
 width:320px;
 display:inline-block;
 font-size:20px;
 font-weight:bold;
 border:2px solid green;
 text-align:right;
 padding-right:10px;
 margin-top : 10px;
}
input{
 height:30px;
 width:320px;
 padding-left:10px;
 font-size:20px;
 font-weight:bold;
 border:2px solid green;
}
select{
 height:30px;
 width:320px;
 padding-left:10px;
 font-size:20px;
 font-weight:bold;
 border:2px solid green;
}	
.btn{
	width : 600px;
}	
.sub{
	height:35px;
	width : 300px;
	border-radius : 13px;
	background : green;
	color : white;
	padding-top : -1px;
}		
.aa {
    color: green;          /* टेक्स्ट का रंग */
    text-decoration: none;  /* underline हटाने के लिए */
    font-size: 20px;
    font-weight: bold;
}

.aa:hover {
    color: blue;         /* hover करने पर रंग बदल जाएगा */
}
	/*----------------------------------------Print--------------*/
	.print-btn{
	margin-top : 5px;
	height : 30px;
	width : 70px;
	font-weight : bold;
    padding:5px 15px;
    background : green;
    color:white;
	border : 2px solid green;
    border-radius : 10px;;
    cursor:pointer;
}
.print-header{
    display:none;
}
/* HEADER */
.print-header{
    text-align:center;
}

/* PRINT ONLY NAME */
.print-name{
    display:none;
}
p{
    margin: 2px 0 0 0;
}
/* SIGNATURE */
.signature{
    margin-top:40px;
    text-align:right;
    margin-right:50px;
}
span{
	height : 20px;
	width 100%;
	text-align : center;
	margin-left : 30px;
	font-weight : bold;
}
.span{
	width 100%;
	text-align : center;
}
/* PRINT */
@media print {

    body *{
        visibility:hidden;
    }

    .print-area, .print-area *{
        visibility:visible;
    }

    .print-area{
        position:absolute;
        top:0;
        left:0;
        width:100%;
    }

    .print-name{
        display:block;
        margin-bottom:10px;
		text-align : left;
		margin-left : 60px;
    }

    .print-btn{
        display:none;
    }
	.print-header{
        display:block;
        text-align:center;
    }
	.span{
	display : none;
}
}
/*-----------------------------------Dashbord----------------------*/
.cards{
margin : 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}
.card{
background:white;
padding:15px;
border : 2px solid black;
border-radius:10px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.card h3{
margin-top:0px;
}





	
	 /* -----------------------------------------MOBILE -------------------------------------------*/
    @media (max-width: 600px) {
 nav {
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0,0,0,0.8);
        flex-direction: column;
        padding: 10px;
        display: none;
        border-radius: 8px;
      }

      nav.active {
        display: flex;
      }

      .menu-btn {
        display: block;
      }
	  .hero {
      flex: 1;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
	footer {
      height: 60px;
      text-align: center;
      padding: 16px;
      background: green;
	  color : white;
    }
	label{
    height: 35px;
    width: 300px;
    padding-left: 10px;
    line-height: 45px;
	font-size : 15px;
	text-align : left;
	border : none;
	margin-top : -10px;
}

input{
    height: 35px;
    width: 330px;
    border: 2px solid green;
    padding-left: 10px;
	font-size : 20px;
	font-weight : bold;
	border-radius : 10px;
}
select{
    height: 35px;
    width: 330px;
    border: 2px solid green;
    padding-left: 10px;
	font-size : 20px;
	font-weight : bold;
	border-radius : 10px;
}
	}