.userpic {
    border: 0px solid midnightblue;
    border-radius: 18px; 
    z-index: 20;
    position: relative;
}

.userpic2 {
    border: 1px solid midnightblue;
    border-radius: 24px; 
}

.userpanel {
    text-align: center;
    position: fixed;
    top: 5vh;
    right: 1vw;
/*    width: 50vw;*/
    border: 1px solid black;
    border-radius: 10px; 
    background-color: #f8f8f8;  /* Optional background color */
    padding: 10px;
    z-index: 11;  /* Ensure it stays on top */
}

.userinfo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 1vh;
    right: 1vw;
    min-width: 32px;
    padding: 0px;
    margin: 2px;
    border: 2px solid midnightblue;
    border-radius: 20px; 
/*    background: rgba(255, 255, 255, 0.01);*/  /* Optional background color */
    background: #facf41;
    z-index: 10;  /* Ensure it stays on top */
}

.userinfo:hover {
  border: 3px solid whitesmoke;
}

.top-fixed {
    place-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    margin: 2px;
    /* height: 40px;  /* Adjust height as needed */
    background-color: #f6f6f6;  /* Optional background color */
    /*z-index: 10;  /* Ensure it stays on top */
}

.left-50 {
    width: 50%;
    height: 95vh;
    padding-top: 5vh;
    float: left;
    background-color: #f3f3f3;  /* Optional background color */
    overflow-y: auto;
    /*border-right: 1px red dotted;*/
}

.right-50 {
    width: 48%;
    height: 95vh;
    padding-top: 5vh;
    padding-left: 2%;
    float: right;
    background-color: #e8e8e8;  /* Optional background color */
    overflow-y: auto;
}

.left-30 {
    width: 30%;
    height: 95vh;
    padding-top: 5vh;
    float: left;
    background-color: #f3f3f3;  /* Optional background color */
    overflow-y: auto;
    /*border-right: 1px red dotted;*/
}

.right-70 {
    width: 68%;
    height: 95vh;
    padding-top: 5vh;
    padding-left: 2%;
    float: right;
    background-color: #e8e8e8;  /* Optional background color */
    overflow-y: auto;
}

/* Clear floats for content below */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.fll {
    float: left;
    clear: left;
    margin-right: 5px;
}

.clickable {
    cursor: pointer;  /* Change cursor to a pointer */
}

.clickable:hover {
  text-decoration: underline;
}

.publicview {
    background-color: #e8e8e8;  /* Optional background color */
}
.level1view {
    background-color: #e8efe8;  /* Optional background color */
}
.level2view {
    background-color: #e8e8ef;  /* Optional background color */
}
.level3view {
    background-color: #f8e8e8;  /* Optional background color */
}

.children-init-hidden {
    display: none;
}
.init-hidden {
    display: none;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}