form div {
    margin-bottom: 1rem;
}

.search-form-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-form-inline label {
    margin-right: 0.25rem;
}

.searchterm__input {
    width: 300px; /* Adjust as needed */
    max-width: 100%;
    box-sizing: border-box;
}

.checkbox-right {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Adds spacing between label and checkbox */
}

.checkbox-right label {
    order: 1;
}

.checkbox-right input[type="checkbox"] {
    order: 2;
}


.command__div-top {
    margin-top: 80px;
    margin-bottom:30px;
    margin-left: 20px;
}

/* Block: watermark */
.watermark--blazor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    transform-origin: center;
    font-size: 6rem;
    font-weight:bold;
    color: black;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
    color:red;
}


/* Form styling */
.form {
    margin-top: 40px;
}

.form--top-margin {
    margin-top: 40px;
}

/* Text color modifiers */
.text--blue {
    color: #0000EE;
}

.text--blue:hover {
    color: red;
}

.text--red {
    color: red;
}

.text--red.blink {
    transition: all 0.2s;
    animation: blinker 1s infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Info labels */
.label--white {
    color: white;
    vertical-align: middle;
}

.label--gold {
    color: gold;
    vertical-align: middle;
}

/* Centered block */
.centered-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

/* CPU temperature status */
.cpu-temp__status--normal {
    background-color: white;
}

.cpu-temp__status--alert {
    background-color: red;
}

/* Command block input variation */
.command__input--full-width {
    width: 100%;
}

/* Command block input variation */
.command__input--half-width {
    width: 25%;
    margin-bottom: 10px;
}

.command__label--bottom-margin {
    margin-bottom: 10px;
}

/* Scroll buttons */
.button--scroll-top,
.button--scroll-bottom {
    display: block;
    position: fixed;
    bottom: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: blue;
    color: white;
    cursor: pointer;
    padding: 25px;
    border-radius: 30px;
    font-size: 18px;
}

.button--scroll-top {
    right: 130px;
}

.button--scroll-bottom {
    right: 30px;
    border-radius: 60px;
}

.button--scroll-top:hover,
.button--scroll-bottom:hover {
    background-color: green;
}

/* Parse button */
.button--parse-regex {
    background-color: blue;
}

/* Navigation */
.nav {
    width: 100%;
}

/* Content spacing */
body {
    padding-top: var(--content-top, 0);
}

/* Typography blocks */
.text--large-bold {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    font-weight: bold;
}

.text--medium-bold {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: normal;
}

/* Layout containers */
.container {
    width: 100%;
}

/* Fixed header */
.header {
    position: fixed;
    width: 100%;
    background-color: white;
    font-family: 'Exo 2', sans-serif;
    padding: 1em;
}

/* Text orientation utility */
.text--upside-down {
    transform: rotate(180deg);
}

/* Navigation menu */
.nav__item {
    list-style: none;
    float: left;
    border: 1px solid red;
    position: relative;
    height: 24px;
}

.nav__sub {
    left: -10000px;
    position: absolute;
}

.nav__item:hover .nav__sub {
    left: 0;
    top: 24px;
}

/* Navbar link hover */
.navbar__link:hover,
.dropdown:hover,
.dropbtn {
    background-color: green;
}



