body {
    margin: 0;
    height: 100vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    color: #abff9a;
}

.openbutton {

    width: 40px;
    height: 40px;

    margin: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    background-color: rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    backdrop-filter: blur(4px);

}


.openbutton:hover {

    background-color: rgba(255, 255, 255, 0.3);

}



.openbutton p {

    color: white;
    text-align: center;

}


.window{
    display: none;
    position: absolute;

    top: calc(50% - 240px);
    left: 300px;

    width: 500px;

    border: 1px solid rgba(15, 187, 230, 0.35);
    border-radius: 12px;

    background-color: rgba(86, 145, 168, 0.88);
    color: #e8ffe3;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(8px);
}

.header{
    height: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 10px;

    background-color: rgba(39, 99, 107, 0.9);
    color: #224a5a;

    cursor: grab;
}


.header:active {

    cursor: grabbing;

}



.header p {
    margin: 0;
    font-weight: bold;
    line-height: 1;
}

.closebutton {

    width: 30px;
    height: 20px;

    flex-shrink: 0;

    cursor: pointer;

    border-radius: 7px;

}



.closebutton:hover {

    opacity: 0.8;

}


.windowcontent {

    padding: 16px;
    overflow: auto;

}



.windowcontent img {

    max-width: 100%;

    height: auto;

    border-radius: 24px;

}

#timeshown {

    font-weight: bold;

}

.notes-body {
    display: flex;
    flex-direction: column;
}

#notesContent{
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

#taskBar{
    position: fixed;
    bottom: 10px;
    left: 10px;

    width: calc(100% - 20px);
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 12px;


    background-color: rgba(20, 25, 23, 0.75);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(171, 255, 154, 0.2);
    border-radius: 16px;
}

#welcome {
    width: 700px;
    height: 550px;
}

#welcome .windowcontent {
    box-sizing: border-box;
    height: calc(100% - 40px);
    padding: 24px;
    overflow-y: auto;
}

#bottomBar{
    display: flex;
    height: 40px;
    flex-shrink: 0;

    padding: 12px;

    border-top: 1px solid rgba(171, 255, 154, 0.2);

    justify-content: space-between;
    align-items: center;
}

#bottomBar:hover{
    cursor: pointer;
}

#videos{
    width: 700px;
    overflow: auto;
}

#videos .windowcontent{
    padding: 10px;
}