.service-status-list{
    .legend-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
    }
    .badge{
        border: 1px solid #ddd;
        padding: 0.4rem 0.8rem;
        font-size: 1.3rem;
        transition: all 0.3s ease-in-out;
         svg{
            border-radius: 10px;
        }
        &:hover{
            background-color: #026BB0 !important;
            color: #fff !important;
            border-color: #026BB0 !important;
            svg{
                border: 1px solid #fff !important;
            }
        }
        &.status-green {
            svg{
                path{
                    fill: #198754;
                }   
            }
           
        }   
        &.status-red {
            svg{
                path{
                    fill: #dc3545;
                }   
            }
        }
        &.status-gray {
            opacity: 0.5;
            svg{
                path{
                    fill: #6c757d;
                }   
            }
        }
        &.status-orange {
            svg{
                path{
                    fill: #ffc107;
                }   
            }
        }
        svg{
            margin-right: 4px;
            width: 15px;
            height: 15px;
        }
    }
    .dataTables_wrapper{
        .dataTables_filter{
            margin-bottom: 1rem;
        }
        .service-row{
            cursor: pointer;
            &:hover{
                td{
                    background-color: rgba(0, 0, 0, 0.08);
                }

            }
        }
        .table{
            border: 1px solid #dddd;
            border-radius: 0.4em;
            overflow: hidden;
            tbody{
                tr{
                    &:last-child{
                       border-bottom: 1px solid #fff;
                    }
                }
            }
        }
    }
    .time-filter-buttons{
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        .btn-time-filter{
            border-color: rgba(0, 0, 0, 0.08);
            border-right: 0;
            background: #fff;
            &.active{
                color: rgba(0, 0, 0, 0.87);
                background-color: rgba(0, 0, 0, 0.08);  
            }
            &:first-child{
                border-top-left-radius: 4px;
                border-bottom-left-radius: 4px;
            }
            &:last-child{
                border-top-right-radius: 4px;
                border-bottom-right-radius: 4px;
                 border-right: 1px solid rgba(0, 0, 0, 0.08);
            }
        } 
    }
}
    

.filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}  
.timezone-toggle-container {
    flex: 1 1 auto;
    text-align: left;
}

.datatable-search-container {
    flex: none;
    text-align: right;
}


#service-status-notifications-table_wrapper.dataTables_wrapper .dataTables_filter,
#service-status-sessions-table_wrapper.dataTables_wrapper .dataTables_filter{
    float: none !important;
    text-align: right;
    display: flex;
    justify-content: space-between;
    width: 100%;

    .timezone-toggle-container {
        input {


            &:checked{
                background-color: #0d6efd;
                border-color:#0d6efd;
            }
        }
    }
}


