body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.marksheet-container {
    width: 60%;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 15px rgb(0, 0, 0, 0.1);
    border-radius: 8px;

}


.marksheet-container h2 {
    text-align: center;
    color: #333;

}

.marksheet-container tr {
    width: 100px;
    height: 50px;

}

.marksheet-container table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;

}

.marksheet-container table,
th,
td {
    border: 1px solid #dddd;
}

.marksheet-container th,
td {
    padding: 0;
    text-align: center;
}

.marksheet-container th {
    background-color: #4caf4c;
    color: white;

}

.marksheet-container td {
    background-color: #f9f9f9;

}

.marksheet-container .button-container {
    text-align: center;
    margin-top: 20px;

}

.marksheet-container button {
    background-color: #4caf4c;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;

}

.marksheet-container button:hover {
    background-color: #45a149;
}

.button-container {
    align-items: center;
}

td input[type="number"] {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
  text-align: center;
}
/* Remove spinner (Chrome, Safari, Edge) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove spinner (Firefox) */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield; /* optional: some browsers respect this */
}


   @media print {
    .no-print {
      display: none !important;
    }
  }

  .print-button-container {
    text-align: center;
    margin-top: 20px;
  }

  .print-button-container button {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
  }
