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: 150px;
    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;
    margin-right: 0.5rem;
}
section button:hover {
    background: #347a4d;
}
#yamlError {
    margin-top: 1rem;
    font-size: 1.1rem;
}
