body {
    background-color: #f5f5f5;
}
ui-main-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    border: none;
    flex-direction: column;
}

ui-peers-list {
    display: flex;
    flex-direction: column;
    /* border-radius: 15px; */
    width: 300px;
}

ui-peer-item {
    cursor: pointer;
    height: 100px;
    border: 1px solid #f5f5f5;
    margin-bottom: 15px;
    background-color: #fff;
    position: relative;
}
ui-peer-item:hover {
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(179, 215, 253, 0.5);
}

ui-peer-item-content {
    display: flex;
    align-items: center;
    height: 100%;
}

ui-logo {
    background-color: #f5f5f5;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    display: block;
    margin-left: 10px;
}

ui-peer-item p {
    color: #333;
    margin-left: 10px;
    font-weight: bold;
    margin-right: 10px;
}

ui-peer-item input {
    display: none;
    visibility: hidden;
}

ui-progress-bar {
    height: 3px;
    width: 0%;
    background: #1d84f2;
    position: absolute;
    bottom: 0;
    left: 0;
}