* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:disabled,
button:disabled,
select:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.bg-primary {
  background-color: #415471 !important;
}

.line-clamp-custom {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal !important;
}

.line-clamp-custom-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

select {
  max-height: 200px;
  overflow-y: auto; 
}


.required-label::after {
  content: " *";
  color: red;
}