.closebutton {
    cursor: pointer; 
    width:16px; 
    height:16px;background-color: #EC6B5E; 
    border-radius:16px; 
    border:solid 1px rgba(0,0,0,0.25); 
    margin-left:6px;
}

.openbutton {
    cursor: pointer; 
    width:16px; 
    height:16px;background-color: #5eec71; 
    border-radius:16px; 
    border:solid 1px rgba(0,0,0,0.25); 
    margin-left:6px;
}

.window {
    position: absolute;
    border: solid;
    border-radius:16px;
    background:#D5E7F1;
    padding:0;
    transform: translate(-50%, -50%);
}

.windowheader {
    height:25px;
    display:flex;
    margin:0;
    padding:10px;
    background:rgba(43, 69, 90, 0.25);
    color:white;
    cursor:move;
    border-radius:16px 16px 0 0;
    align-items: center;
    justify-content: space-between;
    border-bottom:solid 1px rgba(0,0,0,0.25); 
}

.buttons {
    display:flex;
}

.selected { 
    background-color: rgba(143, 220, 250, 0.215);
    height:80px
}

.appIcon {
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    padding: 16px; 
    filter: drop-shadow(0 0 8px black); 
    width: fit-content;
}


.notesContent {
    display: flex;
    flex-direction: row;
    height: 355px;
}

.notesSidebar {
    padding: 10px;
    height: auto;
    width:90px;
    background:rgba(124, 147, 165, 0.5);
    border-radius: 0 0 16px 0;
    border-left:solid 1px rgba(0,0,0,0.25); 
    border-top:solid 1px rgba(0,0,0,0.25); 
}

.noteEntry {
    display:flex;
    margin-bottom: 10px;
    padding:10px
}

.notesMain {
    padding: 0 20px 20px 20px;
    width:410px
}

#desktopApps {
    position: absolute;
    top: 32px;
    left: 16px;

    display: grid;
    grid-template-rows: repeat(3, 96px);
    gap: 16px;
}

.nextbutton {
    border:solid;
    border-radius: 8px;
    background-color: mintcream;
    width: fit-content;
    padding: 5px 10px;
}
.backbutton {
    border:solid;
    border-radius: 8px;
    background-color: mintcream;
    width: fit-content;
    padding: 5px 10px;
}
.skeletaleBody {
    display: flex;
    flex-direction: column;
    height: 450px;
}

.buttonContainer {
    display: flex;
    justify-content: center;
    gap:16px;
    align-items: center;
    flex-shrink: 0;
}

.no {
    display:none !important;
}

.skeletaleMain {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.skeletaleContent {
    flex: 3;
    padding: 20px;
    overflow-y: hidden;
}

.skeletonImage {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top:20px;
    position:relative;
}

.skeletonImage img {
    max-width: 100%;
    max-height: 370px;
    object-fit: contain;
}

.heart img {
    object-fit: contain;
    height: 10px;
}

#heart {
    position: absolute;
    filter:drop-shadow(0 0 4px rgba(255,70,70,0.8));
    top: 50px;
    left: 80px;

    transition: top 0.3s, left 0.3s;
}

