/* Tool Specific CSS */
        #webp-jpg-container {
            width: 350px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin: auto;
        }
        #webp-jpg-container input, #webp-jpg-container button {
            width: 100%;
            padding: 10px;
            margin: 8px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        #webp-jpg-container button {
            background-color: #007bff;
            color: white;
            border: none;
            cursor: pointer;
        }
        #webp-jpg-container button:hover {
            background-color: #0056b3;
        }
        #outputJPGContainer {
            display: none;
            margin-top: 15px;
        }
        #outputJPGContainer img {
            max-width: 100%;
            border-radius: 5px;
        }
        #deleteJPGBtn {
            display: none;
        }