.window {
    border: solid; 
    border-width: 6px;
    /* width: fit-content; */
    border-radius: 16px;
    border-color: #5100ff;
    position: absolute; top: 50%; left: 50%; 
    transform: translate(-50%, -50%);
    background-color: rgb(31, 31, 197);
    overflow: hidden;        /* keeps the header's corners clipped to match rounded corners */
}



body {
    background-color: rgb(15, 7, 124);
    color: white;
    background-image: url(background.jpg);
    background-size: cover;
    margin: 0;
    height: 100%;
    width: 100%;
}

.top-bar {
    display: flex;
    position: relative; /* just add this line */
    margin: 0;
    padding: 0 40px;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background-color: rgba(37, 8, 123, 0.5);
    height: 40px;
    box-sizing: border-box;
}

.top-bar-left {
  text-align: left;
  flex: 1;
  margin: 0;
}

.top-bar-right {
  text-align: right;
  flex: 1;
  margin: 0;
}

.top-bar-center {
  left: 50%;
  margin: 0;
}

.wolf {
    display: flex;
    float: right;
    height: 150px;
    width: 150px;
    border: solid; 
    border-width: 4px;
    border-radius: 10px;
    border-color: #5100ff;
}

.note-size {
    width: 300px;
    height: 300px;
}

.handle {
    background-color:rgb(15, 7, 124);
    width: 100%;
    display: flex;
    cursor: move; 
    height: 30px;
    padding-left: 30px;
    padding-top: 7px;
    margin: 0 -20px 20px -20px;   /* cancels out the parent's 20px left/right padding */
    font-family: URW Chancery L, cursive;
}

.content {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -20px;
}

#welcome {
    display: flex;
    margin: 0;
    padding: 0;
    
}

.hidden {
    display: none;
}
.x {
    width: 20px;
    height: 20px;
    display: flex;
    padding-top: 7px;
    transform: translateX(-8px); /* moves it left by 20px, no layout shift */

}

#notes {
    display: flex;
    margin: 0;
    padding: 0;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color:rgba(37, 8, 123, 0.5);
    height: 90px;
    align-items: center;

}

.welcome-app {
    width: 70px;
    height: 70px;
    background-color:rgb(15, 7, 124);
    border-style: double;
    border-color:rgb(31, 31, 197);
    border-width: 5px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5px;
}

.notes-app {
    width: 70px;
    height: 70px;
    background-color:rgb(15, 7, 124);
    border-style: double;
    border-color:rgb(31, 31, 197);
    border-width: 5px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5px;
}

#temposurge {
    display: flex;
    margin: 0;
    padding: 0;   
}

.temposurge-app {
    width: 70px;
    height: 70px;
    background-color:rgb(15, 7, 124);
    border-style: double;
    border-color:rgb(31, 31, 197);
    border-width: 5px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5px;  
}

li {
    margin-left: 16px;
}

.selected {
    border-style: double;
    border-width: 5px;
    border-radius: 30px;
    margin: 2.5px;
    padding: 0;
    border-color:rgb(174, 0, 255);
}

.sidebar {
    overflow-y: scroll; 
    height: 240px;
    padding-top: 30px;   /* pushes content + scrollbar track down */

}