/* Windows 98 Design System Components */

.win98-btn, .taskbar-app-btn {
    background-color: #C0C0C0;
    border: 1px solid;
    border-top-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-right-color: #000000;
    border-bottom-color: #000000;
    box-shadow: inset 1px 1px 0px 0px #DFDFDF, inset -1px -1px 0px 0px #808080;
    font-family: inherit;
    font-size: 11px;
}

.win98-btn:active, .taskbar-app-btn.active {
    border-top-color: #000000;
    border-left-color: #000000;
    border-right-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    box-shadow: inset 1px 1px 0px 0px #808080, inset -1px -1px 0px 0px #DFDFDF;
    padding-top: 1px;
    padding-left: 1px;
}

.win98-inset {
    border: 1px solid;
    border-top-color: #808080;
    border-left-color: #808080;
    border-right-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    box-shadow: inset 1px 1px 0px 0px #000000, inset -1px -1px 0px 0px #DFDFDF;
}

/* Windows */
.win98-window {
    position: absolute;
    background-color: #C0C0C0;
    border: 1px solid;
    border-top-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-right-color: #000000;
    border-bottom-color: #000000;
    box-shadow: inset 1px 1px 0px 0px #DFDFDF, inset -1px -1px 0px 0px #808080;
    padding: 3px;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    min-height: 200px;
    top: 50px;
    left: 50px;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
    padding: 3px 2px 3px 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
    cursor: default;
    user-select: none;
}

.win98-window.inactive .title-bar {
    background: #808080;
    color: #c0c0c0;
}

.title-bar-text {
    flex-grow: 1;
    padding-left: 2px;
}

.title-bar-controls {
    display: flex;
    gap: 2px;
}

.title-bar-controls button {
    width: 16px;
    height: 14px;
    background-color: #C0C0C0;
    border: 1px solid;
    border-top-color: #FFFFFF;
    border-left-color: #FFFFFF;
    border-right-color: #000000;
    border-bottom-color: #000000;
    box-shadow: inset 1px 1px 0px 0px #DFDFDF, inset -1px -1px 0px 0px #808080;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-bar-controls button:active {
    border-top-color: #000000;
    border-left-color: #000000;
    border-right-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    box-shadow: inset 1px 1px 0px 0px #808080, inset -1px -1px 0px 0px #DFDFDF;
    padding-top: 1px;
    padding-left: 1px;
}

.title-bar-controls .close-btn::before {
    content: "✖";
    font-size: 9px;
    font-weight: bold;
}

.window-body {
    padding: 10px;
    flex-grow: 1;
    overflow: auto;
    background-color: #FFFFFF;
    margin-top: 3px;
    border: 1px solid;
    border-top-color: #808080;
    border-left-color: #808080;
    border-right-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    box-shadow: inset 1px 1px 0px 0px #000000, inset -1px -1px 0px 0px #DFDFDF;
}
