/* progress bars for company  */
.progress_bar {
  display: flex;
  height: 20px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #f1f1f1;
}


.progress-segment {
    display: block;
  height: 100%;
  transition: width 0.5s ease;
  flex-shrink: 0 !important;
}

.bg-super-admin { background-color: #34C759; }
.bg-company-admin { background-color: #FFCC00; }
.bg-user { background-color: #FF9500; }
.bg-unassigned { background-color: #929BA0; }

.progress-used {
    background-color: #FFCC00; 
    height: 100%;
}

.progress-remaining {
    background-color: #EFF1F2; 
    height: 100%;
}

.form-control {
    border-radius: 8px;
    background-color: #FFFFFF;
    height: auto;
    padding: 14px 15px;
    line-height: 18px;
    border: 1px solid var(--Grays-300, #E4E8E9);
}

.small-card-content{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; /* or inline-block, but block is safer here */
    max-width: 150px;
}

a.disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
