/* Created for AssistiveComputing.ai */

/* AI Prompt Style */
.ai-prompt {
    background-color: #333; /* Dark grey */
    border-left: 5px solid #32CD32; /* Light green */
    margin: 1em 0;
    padding: 0.5em 10px 0.5em 50px;
    position: relative;
    color: #f0f0f0; /* Light grey */
}

.ai-prompt:before {
    content: "Me";
    position: absolute;
    left: 10px;
    top: 10px;
    color: #333; /* Dark grey */
    background-color: #32CD32; /* Light green */
    padding: 2px 6px;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1;
    border-radius: 3px;
    font-family: Arial, sans-serif;
}

/* AI Result Style */
.ai-result {
    background-color: #222; /* Charcoal */
    border-left: 5px solid #00BFFF; /* Light blue */
    margin: 1em 0;
    padding: 0.5em 10px 0.5em 50px;
    position: relative;
    color: #f0f0f0; /* Light grey */
}

.ai-result:before {
    content: "AI";
    position: absolute;
    left: 10px;
    top: 10px;
    color: #222; /* Charcoal */
    background-color: #00BFFF; /* Light blue */
    padding: 2px 6px;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1;
    border-radius: 3px;
    font-family: Arial, sans-serif;
}

.ai-prompt p,
.ai-result p {
    display: inline;
}

