.vnc-container .content {
  background-color: transparent;
  color: white;
  padding-top: 28px;
  position: relative;
  height: 100%;
  min-width: 550px;
}    

.vnc-container .header {
  height: 40px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: space-between;
  white-space: nowrap;
  flex-shrink: 0;
}

.vnc-container .header .title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    width: calc(100% - 104px);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}

.vnc-container .header .title > a{
    text-decoration: none;
    color:#00acc1;
}

.vnc-container .header .title > a::after {
  content: ">";
}

.vnc-container .header .title > a:last-child {
    color:white;
}

.vnc-container .header .title > a:last-child::after {
    content: "";
}


.vnc-container .header .button {
  width: 32px;
  height: 32px;
  background: linear-gradient(129.12deg, #446dff 0%, rgba(99, 125, 255, 0.75) 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

.vnc-container .header .button:hover{
    filter: brightness(1.75);
}

.vnc-container .header .button:active{
    filter: brightness(0.75);
}

.vnc-container .header .bg-red{
  background: #b53939 !important;
}

.vnc-container .header-wrapper {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  font-size: 12px;
  line-height: 1.6;
  padding: 0 40px;
  margin-bottom: 12px;
  white-space: nowrap;
  position: relative;
}

.vnc-container .list-sum {
  display: flex;
  align-items: center;
  color: skyblue;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
}

.vnc-container .header-wrapper .right-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

.vnc-container .border-bottom {
    border-bottom: solid #0d47a15e 1.5px;
}

.vnc-container .node-list {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  height: 100%;
  width: 100%;
}

.vnc-container .tr{
    display: flex;
    align-items: center;
    transition: background-color .3s ease;
    cursor: default;
    flex-grow: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
}

.vnc-container .th, .td {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 24px;
    min-width: 80px;
    line-height: 40px;
    height: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

.vnc-container .th {
    color: #64b5f6;
}

.vnc-container .col-name{
    flex-grow:1;
    flex-shrink: 1;
    min-width: 180px;
}

.vnc-container .col-name .name{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}

.vnc-container .col-name .icon{
    width: 40px;
    height: 40px;
}

.vnc-container .table-body{
    width: 100%;
    height: calc(100% - 170px);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.vnc-container .table-body .tr
{
  border-bottom: solid #0d47a140 1px;
  cursor: pointer !important;
}
