.sidebar-container {
    background-color: #FFFFFF;
    height: 100%;
}
.sidebar-item-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 10px 0;
}
.sidebar-item-container a {
    text-decoration: none;
}

.info-box-container {
    position: relative;
    height: 120px;
    width: 100%;
    text-align: center;
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 10px;
}
.box-footer {
    position: absolute;
    height: min-content !important;
    width: 100%;
    background-color: #5fb05f;
    bottom: 0;
}
.service-item {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    margin: 10px 0;
    border: 1px solid lightgray;
    border-radius: 8px;
}
.service-active , .service-off {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 10px;
}
.service-active {
    background-color: greenyellow;
}
.service-off {
    background-color: red;
}
.box-container-style {
    border: 1px solid lightgray;
    padding: 15px;
    border-radius: 10px;
}