.websockets-status-container {
    position: relative;
    height: 32px;
    width: 32px;
    display: flex;
    user-select: none;
}

.websockets-status-icon {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: width 0.3s ease, height 0.3s;
}

.websockets-status-icon-mat {
    height: 18px;
    width: 18px;
    background-color: rgb(26, 26, 26);
    border-radius: 4px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
}

.websockets-status-icon-mat-red {
    background-color: rgba(255, 80, 0, 0.7);
}

.websockets-status-container:hover .websockets-status-icon-mat-red {
    background-color: rgba(255, 80, 0, 1);
}

.websockets-status-icon-mat-yellow {
    background-color: rgba(255, 212, 59, 0.7);
}

.websockets-status-container:hover .websockets-status-icon-mat-yellow {
    background-color: rgba(255, 212, 59, 1);
}

.websockets-status-icon-mat-green {
    background-color: rgb(26, 26, 26);
}

.websockets-status-container:hover .websockets-status-icon-mat-green {
    background-color: rgb(81, 207, 102);
}

.websockets-status-container:hover .websockets-status-icon {
    height: 24px;
    width: 24px;
}