.text-orange-500 {
    color:#FF5020 !important;
}

.bg-orange-500 {
    background-color: #FF5020 !important;
}

.bg-orange-100 {
  background-color: rgba(255, 80, 32, 0.3)  !important;
}

.border-orange-500 {
  border-bottom: 2px solid  #FF5020 !important;
}

.bg-propel {
  background-color: #e6e7e8;
}

body {
  padding-top:65px !important;
}

.loader-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF5020;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-top: 5px;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .scroll-container {
      max-height: 80vh; /* Adjust as needed */
      overflow-y: auto;
  }

.draggable {
  position: absolute;
  cursor: move;
  background: white;
  z-index: 50;
}
.dragging {
    opacity: 0.8;
}

.drag-over {
  border: 2px dashed #FFA500;
}

.ql-toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.taskdescription {
  width: 100%;
}

.leadContainerVisible {
  cursor:pointer;
}

.task-item-input {
  min-width: 550px;
}

.task-category-input {
  max-width: 120px;
}