﻿html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-y: auto;
}

body {
    --mud-drawer-width-right: 280px;
}

.response-box {
    min-height: 100px;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.mud-icon-button-size-small {
    padding: 8px;
}

.mud-dialog {
    max-width: 700px !important;
    width: 100%;
}

.mud-dialog .mud-dialog-actions {
    padding-left: 24px;
    padding-right: 24px;
}

/* Style for the text field inside the dialog */
.dialog-text-field {
    height: 50px; /* Adjust height */
    width: 100%;
    font-size: 16px;
}

/* Style for the response box to match the screenshot */
.dialog-response-box {
    min-height: 220px;
    max-height: 600px;
    overflow-y: auto;
    background-color: var(--mud-palette-background);
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
}

/* Style for the response text */
.dialog-text-content {
    font-size: 14px;
    line-height: 1.5;
}

label {
    cursor: pointer;
    margin-right: 8px;
}

.image-icon-div {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.image-icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

image-mud-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border-radius: 50%;
}

.image-container {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* spacing between images */
}

.image-style {
    width: 100%;
    height: auto;
}

.scrollable-paper {
    max-height: auto;
    max-width: 100% overflow-y: auto;
    padding: 16px;
    margin-bottom: 16px;
}

.non-scrollable-paper {
    padding: 16px;
}

.mud-typography ul {
    list-style-type: disc;
    margin-left: 2rem;
}

.mud-typography ol {
    list-style-type: decimal;
    margin-left: 2rem;
}

.mud-typography li {
    margin-bottom: 0.3rem;
}


.octagon {
    position: relative;
    background: #4CAF50; /* Change color as needed */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.site-title {
    font-size: 1.25rem;
}

.site-title-bullet {
    font-weight: bold;
    margin: 0 3px;
}

/* Normal code block */
.markdown-body pre.code-block {
    background-color: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: Consolas, "Courier New", monospace;
    white-space: pre-wrap;
}

/* Inline code */
.inline-code {
    background-color: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: Consolas, "Courier New", monospace;
}
.item .hover-button {
    visibility: hidden;
}

.item:hover .hover-button {
    visibility: visible;
}

.overflow-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}