body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-image:url("background.jpg");
    background-size:cover;
    overflow:hidden;
}

#terminal-window {
    width: calc(100% - 20px);
    height: calc(100% - 40px);
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 10px;  /* Adjust this value to set the initial vertical position */
    left: 10px; /* Adjust this value to set the initial horizontal position */
}


#title-bar {
    width: 100%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

#title {
    text-align: left;
    padding-left: 15px;
    padding-top: 3px;
    height: min-content;
    color: #fff;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

#top-bar {
    width: 100%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.63);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#time {
    display: block;
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    float: right;
    padding-right: 10px;
    top:auto;
}

#top-title {
    display: block;
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    float: left;
    padding-left: 10px;
    top: auto;
}