.text-orange{
    color:#f37334;
}

.lead-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 350px;           /* Adjust based on your table width */
  line-height: 1.4em;         /* Optional for readability */
  height: 2.8em;              /* = line-height × 2 */
  white-space: normal;        /* Allow wrapping */
}

#loader-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8); 
  backdrop-filter: blur(2px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}


.loader {
  position: relative;
  width: 70px;
  height: 70px;
  animation: spin 1.2s linear infinite;
}


.loader div {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: blink 1.2s linear infinite;
}


.loader div:nth-child(1) {
  top: 0;
  left: 28px;
  background: #8ba58c;
  animation-delay: 0s;
}
.loader div:nth-child(2) {
  top: 14px;
  right: 0;
  background: #f4a43e;
  animation-delay: 0.2s;
}
.loader div:nth-child(3) {
  bottom: 0;
  left: 28px;
  background: #d9534f;
  animation-delay: 0.4s;
}
.loader div:nth-child(4) {
  top: 14px;
  left: 0;
  background: #8ba58c;
  animation-delay: 0.6s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}