/* Regular formatted text */
.formatted-text {
    font-size: 20px;
    font-weight: bolder;
    color: yellow;
}

/* Large formatted text, also bold */
.formatted-text-large {
    font-size: 25px;
    font-weight: bolder;
    color: yellow;
}

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

h3 {
    font-size: 20px;
    font-weight: bolder;
    color: yellow;
}
.special-text {
    font-weight: bolder;
    color: yellow;
}

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

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

/* Highlighted text */
.highlighted-text {
    background-color: yellow;
    color: black;
}

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

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

