body{
  background: url(../images/background.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.backdrop-cst{
  /* background-color: #dc9947e0; */
  background: linear-gradient(4deg, #000000e0, #e0a257c4);
    width: 100%;
    height: 100%;
    position:fixed;
    left: 0;
    top: 0;
}

.container{
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.data-entry-container{
  background: white;
  padding: 2rem;
  border-radius: 5px;
  /* max-width: 600px; */
  margin: auto;
}

.data-entry-container h3{
  color: #776a6a;
  font-size: 17px;
  margin-bottom: 14px;
  font-weight: 300;
}

.data-entry-container input{
  background: #e8e8e8 !important;
  border: none !important;
  border-radius: 2px !important;
  padding: 17px 17px;
  font-weight: 400;
  box-shadow: none !important;
}

.btn-custom{
  margin-top: 15px !important;
  margin: auto;
  display: block;
  background: #e0a257 !important;
  color: #ffffff;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px !important;
  transition: 0.3s;
  border: 1px solid #e0a257 !important;
}

.btn-custom:hover{
  background: #e0a2572e !important;
  color: #b2680d !important;
}

.demo-logo{
  color: #fff !important;
  font-size: 34px;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}

.value-box{
  background: white;
  padding: 15px 10px;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  text-align: center;
}

.value-box label{
  display: block;
  font-size: 18px;
  color: #d06700;
  opacity: 80%;
  font-weight: 600;
}

.value-box span{
  font-size: 28px;
  font-weight: 600;
  color: #252525;
}



/* custom checkbox */
.custom-checkbox-container {
  display: flex;
  align-items: center;
  padding-top:10px;
}

.custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox-label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}

.custom-checkbox-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #e0a257;
  border-radius: 3px;
  transform: translateY(-50%);
}

.custom-checkbox:checked + .custom-checkbox-label:before {
  background-color: #e0a257;
  border-color: #e0a257;
}

.custom-checkbox:checked + .custom-checkbox-label:after {
  content: "\2714"; 
  position: absolute;
  left: 5px;
  top: 50%;
  color: #fff;
  font-size: 14px;
  transform: translateY(-50%);
}
/* custom checkbox */

/* table design*/
.table-container {
  max-width: 100%;
  max-height: 500px; 
  overflow: auto;
}

.table-wrapper {
  padding-bottom: 14px; 
  box-sizing: border-box; 
}

.camel-table {
  border-collapse: collapse;
  margin: 0px 0;
  font-size: 0.9em;
  min-width: 800px; 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.camel-table thead tr {
  background-color: #e0a257;
  color: #ffffff;
  text-align: left;
}

.camel-table th,
.camel-table td {
  padding: 12px 15px;
  border: 1px solid #dddddd;
  font-weight: 500;
  font-size: 1.1em;
}

.camel-table td:first-child,
.camel-table th:first-child {
  border-left: none;
}

.camel-table td:last-child,
.camel-table th:last-child {
  border-right: none;
}

.camel-table th {
  border-top: none;
}

.camel-table thead tr:first-child th:first-child {
  border-top-left-radius: 5px;
}

.camel-table thead tr:first-child th:last-child {
  border-top-right-radius: 5px;
}

.camel-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

.camel-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.camel-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.camel-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
  color: #000;
}

.camel-table tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}

.camel-table tbody tr:last-of-type {
  border-bottom: 2px solid #e0a257;
}


/* WebKit scrollbar styles for table*/
.table-container::-webkit-scrollbar {
  width: 12px; 
  height: 12px; 
}

.table-container::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px; 
}

.table-container::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px; 
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.table-container::-webkit-scrollbar-corner {
  background: #f1f1f1; 
}
/* table design*/
