/* _tools/fileConverter/style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

#tool {
    background: white;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.converter-section {
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.converter-section:hover {
    border-color: #007bff;
    background-color: #f0f7ff;
}

h2 { color: #333; margin-top: 0; }
p { color: #666; font-size: 0.9rem; }

.btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.btn:disabled { background: #ccc; }

textarea {
    width: 100%;
    height: 150px;
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: monospace;
}

#json-output {
    background: #272822;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    overflow-x: auto;
    max-height: 300px;
    display: none;
}