
/* Regular formatted text */
.formatted-text {
    font-size: 18px;
    font-weight: bolder;
    color: #6366f1;
}

/* Large formatted text, also bold */
.formatted-text-large {
    font-size: 20px;
    font-weight: bolder;
    color: #6366f1;
}

/* Specifically for bold text, without altering size */
.bold-text {
    font-weight: bolder;
    color: #6366f1;
}

h3 {
    font-size: 18px;
    font-weight: bolder;
    color: #6366f1;
}

.special-text {
    font-weight: bolder;
    color: #6366f1;
}

/* Formatted URLs */
.formatted-url {
    color: #818cf8;
    text-decoration: underline;
}

/* Remove underline on hover for URLs */
.formatted-url:hover {
    text-decoration: none;
    color: #4f46e5;
}

/* Highlighted text */
.highlighted-text {
    background-color: #4f46e5;
    color: white;
}

/* Domain text styling */
.domain-text {
    color: #4f46e5;
    font-weight: 500;
    font-family: var(--font-family);
    font-size: 20px;
}

/* Hidden brackets for domain names */
.bracket-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Legal textarea line height */
#legal {
    line-height: 2;
}

/* Code block styling */
.code-block {
    border: 1px solid #4f46e5;
    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    color: #6366f1;
    background-color: rgba(99, 102, 241, 0.1);
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
    max-width: 100%;
    font-size: 14px;
}

/* Blockquote styling */
blockquote {
    border-left: 3px solid #6366f1;
    margin: 5px 0;
    padding-left: 20px;
    color: #818cf8;
    font-style: italic;
}
