@font-face {
  font-family: "Tahoma";
  src: url("/assets/fonts/tahoma.ttf") format("truetype");
}

body, html {
    margin: 0;
    padding: 0;
    font-family: "Tahoma", sans-serif;
}

body, 
#container, 
#taskbar, 
.window, 
.window .top {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.window .content,
.window .content * {
    -webkit-user-select: text; 
    -ms-user-select: text;     
    user-select: text;         
}

#container {
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

#draggable-container {
    position: relative;
    flex-grow: 1;
    margin-bottom: 40px;
}

#taskbar {
    height: 40px;
    background-color: #c0c0c0;
    display: flex;
    align-items: center;
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100vw;
}

#taskbar button {
    height: 100%;
    background-color: #c0c0c1;
    border: none;
    cursor: pointer;
    border-right: #909090 2px solid;
    border-left: #ffffff 2px solid;
    border-top: #ffffff 2px solid;
    margin-right: 2px;
    width: 12%;
    color: #000000;
    font-size: 1rem;
    font-family: "Tahoma", sans-serif;
}

.window {
    background-color: #ffffff;
    width: 50vw;
    max-height: 65vh;
    border-top: #ffffff 2px solid;
    border-left: #ffffff 2px solid;
    border-right: #909090 2px solid;
    border-bottom: #909090 2px solid;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.window .top {
    width: 100%;
}

.window .top .title {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background: linear-gradient(to right, #052999, #107fce);
    align-items: center;
    height: 25px;
    color: #ffffff;
    cursor: grab;
    user-select: none;
}

.window .top .title button {
    width: 25px;
    height: 25px;
    border-top: #ffffff 2px solid;
    border-left: #ffffff 2px solid;
    border-right: #909090 2px solid;
    border-bottom: #909090 2px solid;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
}

.window .top .menu {
    display: flex;
    gap: 10px;
    padding: 5px;
    background-color: #c0c0c0;
    height: 20px;
    align-items: center;
    font-size: 0.9rem;
}

.window .top .menu p::first-letter {
    text-decoration: underline;
}

.window .content {
    padding: 10px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    border-top: #909090 2px solid;
    border-left: #909090 2px solid;
    border-bottom: #ffffff 2px solid;
    border-right: #ffffff 2px solid;
}

.window .bottom {
    height: 20px;
    padding: 5px;
    display: flex;
    background-color: #c0c0c0;
    border-top: #909090 2px solid;
    border-left: #909090 2px solid;
    border-bottom: #ffffff 2px solid;
    border-right: #ffffff 2px solid;
    font-size: 0.8rem;
    align-items: center;
}

.window .bottom div {
    height: 30px;
    border-right: #ffffff 2px solid;
    display: flex;
    align-items: center;
    padding-right: 5px;
}