.shadow-box {
    background-color: #f0f0f0;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-left: 10%;
    cursor: pointer;
    width: 80%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 1px;
    border: 1px solid #d5d5d5;


}

.shadow-box:hover {
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(194, 194, 194);
}

.refresh-icon {
    cursor: pointer;
}

.save-btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.group-name {
    flex-shrink: 0;
    /* Prevent shrinking */
    font-weight: bold;

    font-size: 2rem;
    white-space: nowrap;
    margin-right: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 30%;
    margin-left: 20px;
    /* Adjust as per your need */
    font-size-adjust: 0.58;
    /* Adjust as per your need */
}

.limited-dropdown {
    max-width: 70%;
    margin-right: 10%;


}

.action-items {
    display: flex;
    gap: 30px;
    /* Spacing between action items */
}

.action-items .trash-icon:hover {
    color: rgb(255, 90, 90);
}

.action-items .refresh-icon:hover {
    color: #22ac47;
}

.action-items .edit-group-name:hover {
    color: #aaa100;
}

.action-items .select-multi-devices:hover {
    color: #03a9f4;
}



#addGroupModalLabel {
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.modal-header {
    display: block;
}

.add_group_input_text {
    height: 50px;
    /* or any value you prefer */
    line-height: 50px;
    /* must be equal to the height */
    font-size: larger;
    text-align: center;
    font-weight: bold;

}




.toggle-button-cover {
    display: table-cell;
    position: relative;
    /* width: 200px;
    height: 140px; */
    box-sizing: border-box;
}


.button-cover:before {    
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}
.fas[disabled] {
    pointer-events: none;
    color:grey
}
.button-cover,
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: relative;
    top: 70%;
    width: 74px;
    height: 35px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}




.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    border-radius: 10px;
    background-color: #ffbbbb;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 17 */
.button-17 .knobs:before,
.button-17 .knobs span {
    content: "NO";
    position: absolute;
    top: 3px;
    left: 2px;
    width: 30px;
    height: 29px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
}

.button-17 .knobs:before {
    transition: 0.3s ease all, left 0.5s cubic-bezier(0.18, 0.89, 0.35, 1.15);
    z-index: 2;
}

.button-17 .knobs span {
    background-color: #f44336;
    border-radius: 10px;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
    z-index: 1;
}

.button-17 .checkbox:checked+.knobs:before {
    content: "Yes";
    left: 42px;
}

.button-17 .checkbox:checked+.knobs span {
    left: 42px;
    background-color: #03a9f4;
}

.button-17 .checkbox:checked~.layer {
    background-color: #bbebff;
    border-radius: 10px;
}

.small-width {
    width: 6%; /* or any value that suits your design */
}
.group-h1{
    color: #03a9f4;
    font-weight: bolder;
    font-size: 3rem;
}