body {
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    text-align: center;
    background-image: url(./PXL_20260102_051050025.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}
.window {
    border: 1px solid #000000;
    border-radius: 10px;
    width: 20%;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.932);
    display: none;
    transition: box-shadow 0.2s ease-in-out;

}
.window:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.2s ease-in-out;
}
.top_bar {
    position: absolute;
    width: 100%;
    display: flex;
    background-color: rgba(255, 255, 255, 0.692);
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    line-height: normal;
}
.top_bar p {
    margin: 0;
    font-size: 14px;
}
.window-header {
    margin: -20px -20px -20px -20px;
    background-color: rgba(0, 0, 0, 0.027);
    border-radius: 10px 10px 0 0;
    padding: 5px 10px 0px 10px;
    text-align: left;
    height: 30px;
    display:flex;
    justify-content: space-between;
    cursor:grab;
    
}
.window-header p {
    margin: 0;
    font-size: 16px;
    height: 20px;
}
.close-btn {
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    height: 20px;
    
}
.close-btn:hover {
    color: #ff0000;
}
.bottom-bar {
    position: absolute;
    bottom: 10px;
    left: 10%;
    right: 10%;
    width: 80%;
    display: flex;
    background-color: rgba(255, 255, 255, 0.932);
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    line-height: normal;
    height: 75px;
    align-items: middle;

}
.bottom-bar-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
}
.bottom-bar-icon:hover {
    width: 55px;
    height: 55px;
    transition: all 0.2s ease-in-out;
    
}
#Typearea {
    max-width: 100%;
    margin-top: 20px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-family: 'Google Sans', sans-serif;
    min-width: 200px;
    min-height: 100px;
}
#Savebutton {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff00;
    color: #000000;
    cursor: url(./floppy-disk-solid.png), pointer;
    transition: all 0.2s ease-in-out;
    
}
#Savebutton:hover {
    background-color: #8c8aff;
    transition: all 0.2s ease-in-out;
}

