body {
    background-color: #000; /* Classic Win95 teal */
    font-family: "MS Sans Serif", Arial, sans-serif;
}

/* Window shell */
.window {
    width: 800px;
    margin: 40px auto;
    background-color: #c0c0c0;
    border: 2px solid #f44336;
    box-shadow:
        inset -2px -2px #808080,
        inset 2px 2px #ffffff;
}

.window2 {
    width: 400px;
    margin: 40px auto;
    background-color: #c0c0c0;
    border: 2px solid #000;
    box-shadow:
        inset -2px -2px #808080,
        inset 2px 2px #ffffff;
}

/* Title bar */
.title-bar {
    background: linear-gradient(to right, #8d1c14, #ff2414);
    color: white;
    padding: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.window-buttons {
    display: flex;
}

.btn {
    width: 18px;
    height: 18px;
    margin-left: 2px;
    background-color: #c0c0c0;
    color: black;
    text-align: center;
    line-height: 16px;
    font-weight: bold;
    border: 2px solid #000;
    box-shadow:
        inset -1px -1px #808080,
        inset 1px 1px #ffffff;
}

/* Window body */
.window-body {
    padding: 10px;
}

/* Content layout */
.content {
    display: flex;
    margin-top: 10px;
}

.sidebar {
    width: 200px;
    margin-right: 10px;
}

.main {
    flex: 1;
}

/* Group boxes */
.group-box {
    border: 2px solid #000;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #c0c0c0;
    box-shadow:
        inset -2px -2px #808080,
        inset 2px 2px #ffffff;
    position: relative;
}

.group-title {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #c0c0c0;
    padding: 0 6px;
    font-weight: bold;
}

/* Links */
a {
    color: #ff0000;
}

a:visited {
    color: #8a0a0a;
}

/* Buttons */
.win95-btn {
    background-color: #c0c0c0;
    border: 2px solid #000;
    padding: 4px 12px;
    margin-right: 5px;
    box-shadow:
        inset -2px -2px #808080,
        inset 2px 2px #ffffff;
    font-family: "MS Sans Serif", Arial, sans-serif;
}

.win95-btn:active {
    box-shadow:
        inset 2px 2px #808080,
        inset -2px -2px #ffffff;
}

/* Counter */
.counter {
    background-color: black;
    color: #ff1100;
    font-family: "Courier New", monospace;
    padding: 4px;
    margin: 10px 0;
    width: fit-content;
}

/* Status bar */
.status-bar {
    background-color: #c0c0c0;
    border-top: 2px solid #000;
    padding: 4px;
    box-shadow:
        inset -2px -2px #808080,
        inset 2px 2px #ffffff;
    font-size: 12px;
}

/* Marquee */
marquee {
    background-color: #959494;
    border: 2px solid black;
    padding: 4px;
}
