.group-name-input,
.group-desc-input{
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.groups-onboard-form-image-selection-wrapper,
.groups-onboard-form-prof-image-selection,
.groups-onboard-form-banner-image-selection{
    display: flex; 
    flex-direction: column;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.group-onboard-levels-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.group-onboard-level-checkbox{
    display: none;
}

.group-onboard-level-label {
    padding: 10px 20px;
    border-radius: 999px;
    color: #333;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.group-onboard-level-checkbox:checked + .group-onboard-level-label {
    background-color: #f0f0f0;
    border-color: rgb(40, 40, 40) !important;
}

.groups-onboard-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    flex-wrap: nowrap;
    width: 90%;
    margin: auto;
}

.groups-onboard-step {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    min-width: 0;
}

.groups-onboard-step-circle {
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: #555;
    text-align: center;
    line-height: 30px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.groups-onboard-step-title {
    margin-left: 10px;
    white-space: nowrap;
    font-size: 14px;
    color: #777;
    background-color: white;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

@media (max-width: 1000px) and (min-width: 769px) {
  .groups-onboard-step-title {
    font-size: 1rem; 
    white-space: normal; 
  }
}

@media (max-width: 768px) {
  .groups-onboard-step-title {
    display: none;
  }
}

.groups-onboard-step-line {
    position: absolute;
    height: 2px;
    background-color: #ddd;
    left: 20%;
    right: 5%;
    z-index: 1;
}

.groups-onboard-step.completed .groups-onboard-step-circle {
    background-color:  rgb(40, 40, 40);
    color: white;
}

.groups-onboard-step.completed .groups-onboard-step-line {
    background-color: rgb(40, 40, 40) ;
}

.groups-onboard-step.active .groups-onboard-step-circle {
    background-color: rgb(40, 40, 40) !important;
    color: white;
}

.groups-onboard-step.active .groups-onboard-step-title {
    color: rgb(40, 40, 40) !important;
}

.group-prof-image-upload-wrapper .cr-viewport {
    border-radius: 50% !important;
}

.groups-invite-input-users-container,
.manage-group-search-input{
    display: flex;
    flex:1;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px;
    border: 1px solid #DADADA;
    border-radius: 6px;
    background-color: #ebe9ea;
    min-height: 44px;
    gap: 5px;
}

.groups-invite-input-users-container input[type="text"],
.manage-group-search-input input[type="text"] {
    flex: 1;
    border: none;
    background-color: transparent;
    outline: none; 
    min-width: 120px; 
    font-size: 14px;
    padding: 5px;
}

.userSuggestionItem-invite-user-div{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    justify-content: space-between;
}

.userSuggestionItem-invite-user-div:hover{
    background-color: #ccc;
}

.grayed-out-user {
    opacity: 0.5;
    pointer-events: none; 
    cursor: default;
}


/* .selected-user-pill {
    display: flex;
    align-items: center;
    background-color: white; 
    border: 1px solid #888;
    padding: 5px 10px;
    border-radius: 25px;
    font-size: 14px;
} */

.selected-user-pill{
    display: flex;
    align-items: center;
    background-color: white;
    justify-content: space-between;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin: 5px 0 5px 0;
}

.selected-user-pill img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

.selected-user-pill .remove-pill {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}

.add-user-pill-name-email-wrapper{
    display: flex;
    flex-direction: column;
}

.add-user-pill-rights-dropdown {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: #fff;
    font-size: 14px;
    min-width: 100px;
}

.add-user-pill-dropdown-selected{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.add-user-pill-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    display: none;
    z-index: 10;
}

.add-user-pill-dropdown-options .add-user-pill-dropdown-option {
    padding: 5px 10px;
    cursor: pointer;
}

.add-user-pill-dropdown-options .add-user-pill-dropdown-option.selected{
    background-color: #ccc;
}

.add-user-pill-dropdown-options .add-user-pill-dropdown-option:hover {
    background-color: #f0f0f0;
}

.dropdown-arrow.open {
    transform: rotate(180deg);
}

.no-user-found-invite-wrapper{
    padding: 5px;
}

.no-user-found-invite-span{
    padding: 5px 0;
}

.groups-enhance-upgrade-cta,
.groups-manage-purchase-tcsplus-cta{
    border-radius: 10px;
    border: 2px solid #D4272C;
    padding: 10px;
    background-color: #F3F3F3;
    display: flex;
    flex-direction: column;
}

/* .manage-invite-page-tab-invite-users .groups-invite-form-wrapper{
    display:flex !important;
}
.manage-invite-page-tab-invite-users .groups_invite_users_search{
    top: 100% !important;
} */
