.left-section {
    width: 40%;
    float: left;
}

.right-section {
    width: calc(60% - 10px);
    margin-left: 10px;
    float: left;
}

.left-section .container,
.right-section .container {
    margin-bottom: 10px;
    margin-top: 10px;
}

#main .container.serverdetails .head {
    text-align: left;
}

.serverdetails .head .head-title {
    width: calc(100% - 37px - 37px);
    margin-left: 37px;
    display:inline-block;
    text-align: center;
}

.serverdetails .head .editserver-btn {
    display:inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    color: #ddd;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.serverdetails .head .editserver-btn:hover {
    color: #fff;
}

.serverdetail {
    width: 90%;
    margin: 10px auto;
    text-align: center;
}

.serverdetail .name {
    border-bottom: 1px solid #fff5;
}

.serverdetail .value {
    position: relative;
}

.copy-server-address::before {
    content: "\1F4CB";
}

.copy-server-address::after {
    display: none;
    content: "másolás";
    width: 100%;
    margin: 0 auto 0 auto;
    height: 100%;
    position: absolute;
    top: 5%;
    left: 0;
    background-color: #0005;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    transition-property: background-color;
    transition-duration: 0.2s;
    color: white;
    cursor: pointer;
}

.copy-server-address.copied::after {
    content: "másolva";
    background-color: #0f05;
}

.copy-server-address.copyerror::after {
    content: "hiba";
    background-color: #f005;
}

.copy-server-address:hover::after,
.copy-server-address.copied::after,
.copy-server-address.copyerror::after {
    display: block;
}