* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
.issueFeeCertificateContainer {
  max-width: 768px;
  margin: auto;
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(-45deg, white, rgb(250, 250, 250));
}

.pageTitleBox {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 0px;
  margin: 20px 0 10px;
}
.issuedFeeCertificateContainer,
.issueFeeCertificateFormBox {
  padding: 18px 16px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}
.issueFeeFormInputContainer {
  padding-bottom: 12px;
}

label.issueFeeFormInputCard {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.issueFeeFormInputLabel {
  font-size: 12px;
  font-weight: 600;
}
.issueFeeFormInput {
  font-size: 14px;
  font-weight: 500;
  outline: none !important;
  box-shadow: none !important;
  /* border: none !important; */
  height: unset;
}
.issueFeeFormInput[readonly] {
  cursor: not-allowed;
}
input.issueFeeFormSubmitBtn {
  font-size: 14px;
  font-weight: 500;
  width: max-content;
  padding: 7px 18px;
  border-radius: 100px;
  background: #013867;
  color: white;
  font-weight: bold;
  border: none !important;
  box-shadow: inset 2px 2px 10px rgb(255 255 255 / 54%),
    inset -2px -2px 10px rgb(0 0 0), 2px 2px 4px rgba(0, 0, 0, 0.14) !important;
}
input.issueFeeFormSubmitBtn:active,
input.issueFeeFormSubmitBtn:hover {
  background-color: white;
  color: black;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.14) !important;
}

.issuedFeeCertificateBox {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.09));
}
.issuedFeeCertificateBox .table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid;
  background: white;
}
.issuedFeeCertificateBox thead tr th {
  color: white;
  background: #013867;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
  border: 1px solid #025197;
}
.issuedFeeCertificateBox tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.issuedFeeCertificateBox tbody tr:hover {
  background: #f0f0f0;
}
.issuedFeeCertificateBox tbody td {
  font-size: 90%;
  text-align: center;
  vertical-align: middle;
  padding: 5px 12px;
}
