.container-custom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 150px;
}

.databtn-custom {
  color: #000000;
  background-color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border: 2px solid #000;
  margin-right: 2px;
  border-radius: 8px;

}

/* .databtn-custom:hover {
  background-color: rgb(184, 199, 196);
  transform: scale(1.05);
}
.databtn-custom:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(222, 236, 234, 0.973);
} */

.custom-card {
  margin-top: 15px;
  margin-bottom: 1px;
  border-radius: 6px;
  border: 2px solid #fff;
}
.custom-card-body {
  padding-top: 15px;
  margin-top: 15px;
}
.custom-bg {
  background-color: #f5f5f5;
}

.custom-bg2 {
  background-color: rgb(221, 241, 241);
}

.custom-card-heder {
  background-color: #bfe7d5;
}

.custom-card-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 10px;
  height: 75px;
}

.custom-card2 {
  margin-top: 15px;
  margin-bottom: 1px;
  border-radius: 8px; /* Add border radius */
  border: 4px solid rgb(25, 182, 182); /* Add border color */
}

.custom-card2-heder {
  background-color: rgb(25, 182, 182);
}

.custom-sec-card-heder {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: flex-start;
  border-bottom: 2px solid #6c757d8c;
}

.sec-card {
  border: none;
}

.custom-sec-card-body {
  display: flex;
  justify-content: flex-start;
}

.custom-input {
  border: 1px solid #ebebeb;
  border-radius: 6px;
  transition: border-color 0.3s, background-color 0.3s;
  width: 100%;
}

.custom-input-ref-count {
  border: 3px solid #41c2bb;
  border-radius: 6px;
  transition: border-color 0.3s, background-color 0.3s;
  width: 100px; /* Adjusted width */
  margin-right: 15px;
}


.custom-input:hover {
  border-color: #0a4d46;
}

.custom-input:focus {
  border-color: #e4e3aa;
  outline: none;
  box-shadow: none;
}

.custom-label {
  font-size: 15px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 3px;
}

.custom-label-retio {
  font-size: 18px;
  font-weight: 600;
  color: #0d6460;
  padding-bottom: 1px;
  margin-left: 10px;
}

.custom-title {
  font-size: 20px;
  font-weight: 600;
  color: #495057;
}

.custom-checkbox {
  transform: scale(1.7);
  border: 1px solid #0a4d46;
}

.custom-checkbox:hover {
  border-color: #0a4d46;
}

.custom-checkbox:focus {
  border-color: #0a4d46;
  outline: none;
  box-shadow: none;
}

.custom-label-checkbox {
  font-size: 15px;
  font-weight: 600;
  color: #495057;
  padding-bottom: 1px;
}

.custom-label-checkbox-card2 {
  font-size: 20px;
  font-weight: 600;
  color: #0d6460;
  padding-bottom: 1px;
}

.custom-btn {
  background-color: #000000; 
  color: white; 
  border: none;
  height: autos;
  width: "100%";
}

.custom-btn:hover {
  background-color: #626867;
  color: white;  
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-symbol {
  font-size: 3rem;
  color: #3498db;
}

.form-control {
  display: block;
  width: 100%;
  padding: .275rem .75rem;
  font-size: .90rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#alertContainer {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  z-index: 1050;
  padding: 0 15px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.alert {
  margin-bottom: 0;  /* Remove default margin-bottom to avoid spacing issues */
}

/* Loading spinner CSS */
#loadingSpinner {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

#loadingSpinner .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.d-none {
  display: none;
}

.small-line-height {
  line-height: 1.2; 
  color: #495057;
}

#example thead th {
  color: #495057; 
}