section.tool-section {
    width: 100%;
    margin: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem 0;
}
section label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
}
section textarea {
    width: 100%;
    min-height: 250px;
    margin-bottom: 1rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    padding: 0.7rem;
    font-size: 1rem;
    resize: vertical;
    background: #f4f8fb;
    transition: border 0.2s;
}
section textarea:focus {
    border: 1.5px solid #3d8a59;
    outline: none;
}
section button {
    background: #3d8a59;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 1rem;
}
section button:hover {
    background: #347a4d;
}
#htmlOutput {
    background: #f4f8fb;
}
#markdownPreview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    min-height: 30px;
    word-break: break-word;
}
