/* 随机文本插入器前端样式 */
.random-text-inserter {
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #2271b1;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

/* 重置p标签默认样式 */
p.random-text-inserter {
    margin: 0 0 25px 0;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .random-text-inserter {
        padding: 10px;
        font-size: 1em;
    }
}

/* 暗黑模式支持 */
@media (prefers-color-scheme: dark) {
    .random-text-inserter {
        background: #2d2d2d;
        border-left: 4px solid #4a89dc;
        color: #f0f0f0;
    }
}

/* 链接样式 */
.random-text-inserter a {
    color: #0073aa;
    text-decoration: none;
    border-bottom: 1px dotted;
}

.random-text-inserter a:hover {
    color: #00a0d2;
    border-bottom: 1px solid;
}

/* 强调文本样式 */
.random-text-inserter strong, 
.random-text-inserter b {
    font-weight: 700;
    color: #d54e21;
}

/* 斜体文本样式 */
.random-text-inserter em, 
.random-text-inserter i {
    font-style: italic;
    color: #46b450;
} 