/* ledger green css */
* {
  padding: 0%;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f0f3fd;
}

.bold-datalist option {
  font-weight: bold;
}
/* body {
background-color: #f0f3fd;
} */
h4 {
  font-size: 24px;
}

input,
select,
textarea {
  height: 28px !important;
  border-radius: 2px !important;
  padding: 2px !important;
  background-color: transparent !important;
  border: 1px solid #bbbaba !important;
  color: blue !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

textarea {
  height: 48px !important;
}

select:focus,
textarea:focus,
input:focus {
  border-color: rgb(207, 204, 204) !important;
  box-shadow: 1px 2px 8px #e4e4e4 !important;
  background-color: #fff !important;
}

label {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  width: 200px;
}

.input-div {
  display: flex;
  margin-bottom: 2px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: end;
}

.buttons button {
  background: rgb(60, 20, 241);
  width: 100px;
  padding: 4px 0px;
  border-radius: 4px;
  border-color: rgb(60, 20, 241);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.buttons button:hover {
  background: rgb(26, 0, 139);
  
}

@media only screen and (max-width:400px) {
  .input-div {
    display: block;
    margin-bottom: 1px;
  }
}

@media only screen and (max-width:439px) {
  .buttons {
    display: flex;
    flex-direction: row;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 4px;
  }
}

option {
  font-weight: bold !important;
}
/* .head {
  background-color: #f3f4f5;
  padding: 5px;
} */
.addd{
  background: #000 !important;
  color: #fff !important;
}

.modal {
  display: none; /* Hide the modal by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* Adjust the top margin to center vertically */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust the width of the modal */
  max-width: 500px; /* Set a maximum width for the modal */
}

.close {
  color: #aaa;
margin-left: auto;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  width: 30px;
  border-radius: 50%;
  /* background: blue; */
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
 .modal #n_create{
  text-transform: uppercase !important;
}

a{
  text-decoration: none !important;
}