/* URL工具特定样式 */

/* 编码选项区域 */
.encoding-options {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

[data-theme="dark"] .encoding-options {
    background-color: #2d3748;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 10px;
    width: auto;
}

/* 信息区域 */
.info-section {
    margin-top: 15px;
}

.info-section h3 {
    color: #2c3e50;
    margin: 15px 0 10px;
    font-size: 18px;
}

[data-theme="dark"] .info-section h3 {
    color: #ecf0f1;
}

.info-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.info-section li {
    margin-bottom: 8px;
}

.example {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    font-family: monospace;
    font-size: 14px;
    overflow-x: auto;
}

[data-theme="dark"] .example {
    background-color: #2d3748;
    border-left-color: #3498db;
}

.example p {
    margin-bottom: 8px;
}

/* 拖拽样式 */
.drag-over {
    background-color: rgba(52, 152, 219, 0.1);
}

/* 按钮样式增强 */
.btn-primary {
    background: #3498db;
}

.btn-primary:hover {
    background: #2980b9;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
    }
    
    .encoding-options {
        padding: 10px;
    }
}