body {
    background: linear-gradient(to right, #f428e0, #ffffff);
}

.bevel-out {
    box-shadow:
        inset -1px -1px #000000,
        inset 1px 1px #ffffff,
        inset -2px -2px grey,
        inset 2px 2px #e6e6e6;
}

.columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-top: 300px;
}

.first-column,
.third-column {
  width: 180px;
}

.content-wrapper {
    width: 180px;
}

.content-wrapper {
    width: 500px;
    height: 320px;
}

.status-window {
    width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fdfce8;
  border: 1px solid #000;
}

.status-title {
    color: #ffffff;
    font-family: "JetBrains Mono", monospace;
    font-size: 9pt;
    font-weight: 700;
    padding-left: 4px;
}

.status-header {
    background-color: #7386c6;
    border-bottom: 3px solid #b8cce4;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-buttons button {
    border: none;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    background-color: #909294;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
}

.status-content {
    padding: 4px;
    font-family: "JetBrains Mono", monospace;
    font-size: 9pt;
    font-weight: 400;
    overflow-y: auto;
}

.status-content a {
    color: #0000ee;
    text-decoration: underline;
}