/* 控制面板样式 */
.lorem-control-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.lorem-option-group {
    padding: 15px;
    border: 2px solid #e0e3eb;
    border-radius: 8px;
}

.lorem-option-group h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

/* 输入框样式 */
.lorem-input1 {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e3eb;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.lorem-input1:focus {
    outline: none;
    border-color: #2196F3;
}

.lorem-input-group2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 5px;
}

.lorem-input-group2 label {
    min-width: 100px;
    font-weight: 500;
}

.lorem-input-group2 input {
    width: 100%;
}

/* 输出区域样式 */
.lorem-codeoutputdiv {
    height: 300px;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 10px;
    overflow-y: scroll;
    font-size: 14px;
    background-color: #f8f9fa;
    line-height: 1.8;
}

.lorem-codeoutputdiv:hover {
    box-shadow: 0 0 5px #3498db, 0 0 10px #3498db;
}

/* 工具说明样式 */
.lorem-tool-intro {
    margin-top: 2rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.1);
    font-size: 13px;
    color: #666;
}

.lorem-tool-usage {
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f5e9;
    border-left: 4px solid #4CAF50;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
    font-size: 13px;
    color: #666;
    line-height: 24px;
}

.lorem-tool-caution {
    margin-top: 2rem;
    padding: 1rem;
    background: #ffebee;
    border-left: 4px solid #F44336;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.1);
    font-size: 13px;
    color: #666;
    line-height: 24px;
}

.lorem-tool-intro ul li {
    list-style-type: none;
}

.lorem-tool-usage ol li,
.lorem-tool-caution ol li {
    list-style-position: inside;
}

.lorem-tool-intro h4,
.lorem-tool-usage h4,
.lorem-tool-caution h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* 按钮组样式 */
.lorem-btngroup {
    text-align: center;
    margin: 20px;
}

/* 响应式设计 - 工具特有 */
@media (max-width: 768px) {
    .lorem-control-panel {
        display: flex;
        flex-wrap: wrap;
    }

    .lorem-option-group {
        width: 100%;
    }
}