/* ************************** TAILWIND FRONTEND CSS HARD-CODED ******************************** */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.prose {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji";
}
.prose :is(h1, h2, h3, h4, h5, h6) {
    all: revert;
    font-weight: bold;
    margin: 1em 0 0.5em;
}

.prose p {
    all: revert;
    margin: 0 0 1em;
}

.prose ul {
    all: revert;
    list-style-type: disc;
    margin: 0 0 1em 2em;
    padding: 0;
}
.prose ul li::marker {
    color: black;
}

.prose ol {
    all: revert;
    list-style-type: decimal;
    margin: 0 0 1em 2em;
    padding: 0;
}

.prose li {
    all: revert;
    margin: 0.25em 0;
}

.prose blockquote {
    all: revert;
    margin: 1em 2em;
    padding-left: 1em;
    border-left: 3px solid #ccc;
    color: #666;
    font-style: italic;
}

.prose pre {
    all: revert;
    background: #f5f5f5;
    padding: 1em;
    overflow: auto;
    font-family: monospace;
    font-size: 0.9em;
    margin: 0 0 1em;
}

.prose code {
    all: revert;
    background: #f2f2f2;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: monospace;
}

.prose table {
    all: revert;
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.prose th,
.prose td {
    all: revert;
    border: 1px solid #ccc;
    padding: 0.5em;
    text-align: left;
}

.prose a {
    all: revert;
    color: #0b5ed7;
    text-decoration: underline;
}

.prose img {
    all: revert;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0;
}

.prose hr {
    all: revert;
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
}

.truncate-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.truncate-10 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    line-clamp: 10;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

.break-word {
    word-break: break-word;
}

[type=text], input:where(:not([type])), [type=email], [type=url], [type=password], [type=number], [type=date], [type=datetime-local], [type=month], [type=search], [type=tel], [type=time], [type=week], [multiple], textarea, select {
    border-color: #e5e7eb;
    font-size: 1.125rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4f46e5 !important; /* Tailwind indigo-600 */
    color: #ffffff !important;
}
