﻿.hide-underline .mud-input::before,
.hide-underline .mud-input::after {
    display: none !important;
}
/* Optional: remove any remaining border that might show up */
.hide-underline .mud-input-slot {
    border-bottom: none !important;
}

.mud-pdf-viewer .mud-input-control {
    max-width: 80px !important; /* Shrink or widen the page selector */
    padding: 0px;
}

.mud-pdf-viewer .mud-input-root-outlined {
    background-color: var(--mud-palette-background-grey) !important;
    border-color: forestgreen !important;
}

/* 1. Target the numeric input wrapper container */
.pdf-container .mud-input-control.mud-input-number-control {
    max-width: 75px !important;
    min-width: 60px !important;
}

/* 2. Style the actual input text field box */
.pdf-container .mud-input-root-outlined {
    background-color: var(--mud-palette-background) !important;
    border-radius: 4px !important;
}

/* 3. Style the input borders */
.pdf-container .mud-input-outlined-border {
    border-color: var(--mud-palette-primary) !important;
    border-width: 1px !important;
}

/* 4. Style the text alignment inside the input */
.pdf-container input.mud-input-slot {
    text-align: center !important;
    font-weight: 600 !important;
    padding: 6px 4px !important; /* Adjust spacing inside */
}

.radzen-editor-wrapper ol {
    list-style-type: decimal !important;
    margin-left: 24px !important;
    padding-left: 16px !important;
}

.radzen-editor-wrapper li {
    display: list-item !important;
}

/* Prevent default block margins from making line breaks look massive */
.radzen-editor-wrapper div {
    margin: 0;
    padding: 0;
}

.radzen-editor-wrapper .rz-html-editor-content {
    padding: 15px !important;
    box-sizing: border-box;
}

/* Prevent MudBlazor from stripping list styles inside the Radzen Editor content wrapper */
.rz-html-editor-content ul {
    list-style-type: disc !important;
    padding-inline-start: 40px !important;
    margin-top: 1em !important;
    margin-bottom: 1em !important;
}

.rz-html-editor-content ol {
    list-style-type: decimal !important;
    padding-inline-start: 40px !important;
    margin-top: 1em !important;
    margin-bottom: 1em !important;
}

.rz-html-editor-content li {
    display: list-item !important;
}

.html-preview-container ul {
    list-style-type: disc !important;
    padding-inline-start: 40px !important;
}

.html-preview-container ol {
    list-style-type: decimal !important;
    padding-inline-start: 40px !important;
}

.html-preview-container li {
    display: list-item !important;
}

#MonacoEditor {
    border: none !important;
}
    #MonacoEditor textarea.monaco-mouse-cursor-text {
        /*display: none;*/
    }

.text-content {
    height: 600px;
    width: 100%;
    /*border: solid 1px #DFDFDF;*/
    border: none;
}

.html-content {
    height: 600px;
    width: 100%;
    max-width: 2000px !important;
    border: none; /*solid 1px #DFDFDF;*/
}

.html-content-mobile {
    height: 650px;
    width: 400px;
    border: solid 1px #DFDFDF;
}

/* 1. Kills the standard bottom border */
.no-bottom-line .mud-input,
.no-bottom-line .mud-input-underline,
.no-bottom-line .mud-input-control-input-container {
    border-bottom: none !important;
    border-bottom-style: none !important;
}

    /* 2. Kills the pseudo-element line that animates/shows up on hover/focus */
    .no-bottom-line .mud-input::after,
    .no-bottom-line .mud-input::before,
    .no-bottom-line .mud-input-control-input-container::after,
    .no-bottom-line .mud-input-control-input-container::before {
        display: none !important;
        background-image: none !important;
        background: transparent !important;
    }