#spell-checker-container {
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            text-align: center;
        }

        #spell-checker-container h1 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        #spell-checker-container textarea {
            width: 100%;
            height: 100px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 10px;
            font-size: 16px;
        }

        #spell-checker-container button {
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }

        #spell-checker-container button:hover {
            background-color: #0056b3;
        }

        #spell-checker-container #result {
            margin-top: 20px;
            font-size: 16px;
            color: #333;
            text-align: left;
        }

        .error {
            color: red;
            font-weight: bold;
        }

        .suggestion {
            color: green;
            font-style: italic;
        }