
#openSidebar {
    font-size: 24px;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    position: absolute;
    left: 20px;
}

.sidebar {
    height: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(20px);
    background-color: #111111C9;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: height 0.5s ease, top 0.5s ease;
    z-index: 9999999999999999999999999999999;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar-content {
    padding: 10px;
    color: white;
    margin-top: 150px;
}

.sidebar-content a {
    padding: 8px 8px 25px 32px;
    text-decoration: none;
    font-size: 25px;
    font-weight: bolder;
    color: #818181;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.sidebar-content a img {
  width: 30px;
  height: auto;
  margin-right: 12px;
}

.sidebar-content a:hover {
    color: #f1f1f1;
}

.sub-menu {
    background-color: #30303069;
    margin: 0px 20px 0px 20px;
    border-radius: 0px 20px 20px 20px;
    display: none;
    padding-left: 20px;
}

.sub-menu a {
    padding: 8px;
    font-size: 20px;
    color: #bbb;
    display: block;
}

.sub-menu a:hover {
    color: #ddd;
}

.main-content {
    padding: 16px;
    margin-top: 50px;
}

.selected {
  border-width: 2px;
  border-color: gray;
  border-style: dashes;
  border-radius: 15px;
  padding: 6px;
}