        body {
            text-align: center;
            font-family: Arial, sans-serif;
            background-color: #F0F0F0;
        }

        .link-button {
            display: inline-block;
            padding: 5px 10px;
            background-color: #007bff;
            color: #fff;
            border: none;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }

        .container {
            margin: 20px auto;
            max-width: 480px;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
}
        h1 {
            margin-top: 0;
        }

        form {
            margin-bottom: 20px;
        }

        textarea {
            width: 100%;
            height: 200px;
            resize: none;
            border: 1px solid lightgray;
			margin-left: -2px;
        }

        input[type="submit"] {
            background-color: #007bff;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
        }

        .result {
            text-align: left;
            margin-top: 20px;
        }

        @media screen and (max-width: 600px) {
            .container {
                margin: 20px auto;
                max-width: 480px;
                padding: 20px;
                background-color: #fff;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }
            textarea {
                height: 200px;
            }
        }

        /* New styles for buttons */
        .clear-button {
            background-color: #EC971F;
            color: white;
            padding: 5px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            float: right;
            margin-bottom: 5px;
            margin-left: 5px;
            height: 35px;
            white-space: nowrap;
        }

        .copy-button {
            background-color: #449D44;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .newline-button {
            background-color: #0056b3;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .convert-button:hover {
            background-color: #007bff;
        }

        /* CSS for iframe container */
        #container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        #iframe {
            width: 100%;
            height: 100%;
            border: none;
        }