.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3.5px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(24px);
}



.dropdown-toggle::after{
    display: none !important;
}

button.btn.btn-secondary.dropdown-toggle {
    background: initial;
    border: initial;
    color: #000000;
    font-size: 20px;
    font-weight: bolder;
}

div#users_table_wrapper {
    text-align: center;
}

.header_user{
    position: relative;
    margin-bottom: 10px;
}

a.btn_add_user {
    position: absolute;
    right: 0;
    background: #30b876;
    color: white !important;
    padding: 10px 20px;
    top: 0;
    font-family: 'Outfit';
}

a.btn_add_user:hover {
    position: absolute;
    right: 0;
    background: #30b876;
    color: white !important;
    padding: 10px 20px;
    top: 0;
    font-family: 'Outfit';
}

hr.line_user {
    border: solid 1px #c9c9c9;
    width: 100%;
    margin: auto;
}

div#add_company_user .modal-content {
    margin: auto;
}

div#edit_company_user .modal-content {
    margin: auto;
}


img.image_add_user {
    width: 188px ;
}

form#add_com_user {
    text-align: left;
    padding: 10px;
}

form#add_com_user label {
    font-size: 20px;
    width: 100%;
    font-family: 'Outfit';
    color: black;
    font-weight: 500;
}

.role_label label {
    font-size: 16px !important;
    font-family: outfit;
    font-weight: 600;
}

p.role_line {
    padding: 5px;
    margin: 10px 0;
    font-family: 'Outfit';
    font-weight: bolder;
    font-size: 18px;
}

form#add_com_user input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

button#update_user_ {
    background: #30b876;
    color: white;
    border: solid 1px #30b876;
    font-family: 'Outfit';
    padding: 14px 0;
    width: 274px;
    height: 60px;
    border-radius: 10px !important;
    font-size: 22px;
}



label.role_label {
    margin: 20px 0;
    font-family: 'Outfit' !important;
    font-weight: 500 !important;
    font-size: 20px !important;
}

form#add_com_user .form-group {
    margin-bottom: 15px;
}



.radio-group {
    display: flex;
    align-items: center; /* vertically centers the items */
    margin-bottom: 20px;
  }
  
  .radio-text {
    margin-left: 10px; /* space between radio and text */
  }
  
  /* Optional styling for text elements */
  .radio-text label {
    margin: 0;
  }


  
  .radio-text p {
    margin: 0;
    font-size: 16px;
    color: #475569;
    font-family: outfit;
    font-weight: 400;
  }

  input[type="radio"] {
    --s: 1.5em; /* size */
    --c: #30b876; /* active color */
  
    height: var(--s);
    aspect-ratio: 1;
    border: calc(var(--s) / 8) solid #ccc; /* default border */
    border-radius: 50%;
    outline-offset: calc(var(--s) / 10);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
  }
  
  /* Create the inner bullet */
  input[type="radio"]::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: var(--c);
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
  }
  
  /* Checked state */
  input[type="radio"]:checked {
    border-color: var(--c);
  }
  
  /* Show inner dot when checked */
  input[type="radio"]:checked::before {
    transform: scale(1);
  }
  



input#role {
    font-size: 22px;
    margin-left: 5px;
}

.form-group.role_inline {
    display: inline-block;
    margin-left: 70px;
}

button#add_user_ {
    background: #30b876;
    color: white;
    border: solid 1px #30b876;
    font-family: 'Outfit';
    padding: 14px 0;
    width: 274px;
    height: 60px;
    border-radius: 10px !important;
    font-size: 22px;
}



form#add_com_user input[type="email"] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}