/* text properties */
body {
    background-color: #000;
    color: #fff;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
}
/* terminal like box for shii*/
.fetch-container {
    padding: 20px;
    width: fit-content;
    white-space: pre;
    line-height: 1.1;
    font-size: 14px;
}

/* OS colours*/

/* CachyOS Emerald/Green */
.cachy-green { color: #1db380;; font-weight: bold; }
.cachy-blue  { color: #1e544a; } /*found out after that it is not blue, ignore*/

/* Windows 10/11 Blue */
/* Note: Win11 uses brighter cyan in default powershell, check before publishing*/
.win-blue {
    color: #0078d4;
    font-weight: bold;
}
.win-blue { color: #0078d4; font-weight: bold; }
.win-cyan { color: #00adef; }
.win-yellow { color: #2596be; font-weight: bold; }

/* Debian Red */
.debian-red { color: #d70a53; font-weight: bold; }

/* Proxmox Orange */
.px-orange { color: #ff8700; font-weight: bold; }

/* Global Highlight for labels (OS:, Host:, etc.) */
.label {
    color: inherit;
    filter: brightness(1.2);
    font-weight: bold;
}

/* W H I T E*/
.value {
    color: #ffffff;
}