.control-panel {
    background-color: #ffffff;
    width: 250px;
    height: 50%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-left: none;
    border-top: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.139);
}

.item {
    background-color: #ffffff;
    width: 100%;
    height: 50px;
    border-radius: 60px;
    margin-bottom: 10px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.123);
    transition: .3s ease;
    text-align: center;
    align-items: center;
    display: flex;
    font-weight: bold;
}

.item:hover {
    transform: scale(1.02);
    color: rgb(0, 132, 255);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.242);
}

.item>img {
    margin-left: 40px;
}

.item>div {
    margin-left: 20px;
}

.container {
    display: flex;
    margin-top: 50px;
    margin-left: 50px;
}

.avator-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgb(194, 194, 194);
}

.avator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-container {
    margin-left: 80px;
    transition: .3s ease;
    flex: 1;
}

.main-container>h2 {
    font-size: 30px;
    font-weight: bold;
}

.main-container>span {
    font-size: smaller;
    color: #777777;
}

.avator-container {
    border-radius: 60px;
    margin-bottom: 50px;
    margin-left: 10px;
    transition: .3s ease;
}

.avator-container>* {
    margin-bottom: 10px;
}

.name-info {
    font-weight: bold;
    font-size: large;
}

.id-info {
    color: #777777;
    font-weight: lighter;
}

.item-container {
    margin-top: 50px;
    flex: 1;
}

.main-item {
    width: 85%;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 120px;
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 0.144);
}

.empty-item {
    background-color: #f6f6f6;
    width: 85%;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 120px;
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 0.144);
}

.main-item>p,
.main-item>span {
    font-size: smaller;
    color: #777777;
    margin: 0;
}

.item-title {
    display: flex;
}

.item-title>img {
    margin-left: auto;
    margin-right: 30px;
}

.empty-item>p,
.empty-item>span {
    font-size: smaller;
    color: #777777;
    margin: 0;
}