
.account-title-head{
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
    border-bottom: 1px solid #5567;
    padding-bottom: 10px;
}

.account-title-sub{
    font-size: 16px;
    font-weight: bold;
}

.group-table{
    margin-top: 15px;
}

.edit-group-cell{
    font-size: 20px;
}

.group-table td{
    position: relative;
    text-transform: capitalize;
}

.status-dot-on{
    background: #00ff00;
    height: 10px;
    width: 10px;
    border-radius: 100px;
    position: absolute;
    left: 4px;
    margin-top: 3px;
}

.status-dot-off{
    background: #ff0000;
    height: 10px;
    width: 10px;
    border-radius: 100px;
    position: absolute;
    left: 4px;
    margin-top: 3px;
}

.sms-noti , .email-noti{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.toggle {
    display: none;
}

.toggle-label {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: var(--background);
    border-radius: 50px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.sms-text{
    color: var(--text);
    font-weight: normal;
    margin-left: 5px;
    font-size:12px;
}

.toggle-label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background-color: var(--text);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle:checked + .toggle-label {
    background-color: var(--themeColor);
}

.toggle:checked + .toggle-label::before {
    transform: translateX(25px);
}

.account-sub-text{
    opacity: .6;
    font-style: italic;
    font-weight: normal;
}

.account-box{
    margin-bottom: 30px;
}

.company-bio, .company-focus{
    background: var(--background) !important;
    min-height: 150px;
    margin-bottom: 30px;
}

.account-title-text{
    margin-bottom: 20px;
    font-weight: normal;
}